amount 2.0.0 copy "amount: ^2.0.0" to clipboard
amount: ^2.0.0 copied to clipboard

Amount helps to convert numerical amount to words.

example/amount_example.dart

import 'package:amount/amount.dart';

void main() {
  var numbers = [
    1000,
    26042021,
  ];
  numbers.forEach((number) {
    print('$number -> ${Amount.word(number)}');
  });
}
1
likes
120
pub points
54%
popularity

Publisher

verified publisherjustkawal.dev

Amount helps to convert numerical amount to words.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on amount