turkish_numbers 0.1.0
turkish_numbers: ^0.1.0 copied to clipboard
Turkish number-text conversions
example/turkish_numbers_example.dart
library turkish_numbers_example;
import 'package:turkish_numbers/turkish_numbers.dart';
main() {
print("101 = ${turkishIntToString(101)}");
print("yüz on bir = ${turkishStringToInt('yüz on bir')}");
}