arabic_numbers

Creator: coderz1093

Last updated:

Add to Cart

Description:

arabic numbers

arabic_numbers #
Easily convert to Arabic numerals
Getting Started #
Create an instance of Arabic Numbers Class #
ArabicNumbers arabicNumber = ArabicNumbers();
// Or call ArabicNumbers().convert(1);
copied to clipboard
Call the convert() method #
arabicNumber.convert(1);
// You can pass int/String value in the parameter.
// It will return a String value.
copied to clipboard
Example #
import 'package:fabexdateformatter/fabexdateformatter.dart';

main(){
ArabicNumbers arabicNumber = ArabicNumbers();
arabicNumber.convert(7);
//Outputs: ٧
}

copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.