remove_accentuation_extension 0.0.2

Remove accents, in a simple way quickly using the extension.

Remove Accentuation Extension

Remove accents, in a simple way quickly using the extension.

Contributions are welcome

Usage

A simple usage example:

   import 'package:remove_accentuation_extension/remove_accentuation_extension.dart';

   main() {
   
   print(('ÀÁÂÃÄÅàáâãäåÒÓÔÕÕÖØòóôõöøÈÉÊËèéêëðÇçÐÌÍÎÏìíîïÙÚÛÜùúûüÑñŠšŸÿýŽž').remove);
   // prints 'AAAAAAaaaaaaOOOOOOOooooooEEEEeeeeðCcÐIIIIiiiiUUUUuuuuNnSsYyyZz'
   }