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)}');
  });
}
2
likes
150
points
21
downloads

Publisher

verified publisherjustkawal.dev

Weekly Downloads

Amount helps to convert numerical amount to words.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

More

Packages that depend on amount