spell_num 0.0.6
spell_num: ^0.0.6 copied to clipboard
convert numbers to english words.
example/lib/main.dart
import 'package:spell_num/spell_num.dart';
void main() {
spellNum(985432723.55, 2, 'EUR');
// Nine Hundred Eighty Five Million Four Hundred Thirty Two Thousand Seven Hundred Twenty Three Euros and Fifty Five Cents
spellNum(18.06, 2, 'USD');
spellNum(9.9, 2, 'USD');
}