number_to_character 0.0.2 number_to_character: ^0.0.2 copied to clipboard
A new Flutter plugin.
number_to_character #
this plugin is build to convert number to text
Getting Started #
This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
How to use #
Simple instantiate NumberToCharacterConverter('en') class and call the method convertInt or convertDouble, inform the value parameter wich language you want, for now there is just three languages => English 'en', French 'fr', Arabic 'ar'
Example: var converter = NumberToCharacterConverter('en'); converter.convertInt(99); // it shows ninety nine OR var converter = NumberToCharacterConverter('fr'); converter.convertInt(99); // it shows quatre-vingt dix-neuf
WHAT'S NEXT? #
add more languages