number_to_wordcha 1.0.0
number_to_wordcha: ^1.0.0 copied to clipboard
A Dart package that converts numerical values into their word equivalents in the Uzbek language.
example/number_to_wordcha_example.dart
import 'package:number_to_wordcha/number_to_wordcha.dart';
void main() {
String wordForm = NumberToWords.convert(12345);
print(wordForm); // Output: o'n ikki ming uch yuz qirq besh
}