amount 1.0.0
amount: ^1.0.0 copied to clipboard
Amount helps to convert numerical amount to words.
amount #
amount is a dart library to convert numerical amount to words.
Table of Contents #
Lets Get Started #
1. Depend on it #
Add this to your package's pubspec.yaml
file:
dependencies:
amount: ^1.0.0
2. Install it #
You can install packages from the command line:
with pub
:
$ pub get
3. Import it #
Now in your Dart
code, you can use:
import 'package:amount/amount.dart';
Usage #
Imports #
import 'package:amount/amount.dart';
Convert Amount to word #
var val1 = 1000;
String result1 = Amount.word(val1);
print('$val1 -> $result1');
var val2 = 26042021;
String result2 = Amount.word(val2);
print('$val2 -> $result2');
// 1000 -> one thousand
// 26042021 -> two crore sixty lakh forty two thousand and twenty one
Features coming in next version #
On-going implementation for future:
- support for numbers of length >= 10
Donate #
Oooooooops, My laptop is slow, but I'm not.