money 0.1.3 copy "money: ^0.1.3" to clipboard
money: ^0.1.3 copied to clipboard

outdatedDart 1 only

"Dart implementation of Fowler's Money pattern"

Money #

Dart implementation of Fowler's Money pattern.

Coverage Status

Example #

import 'package:money/money.dart';

void main() {
    final a = new Money(100, new Currency('USD');
    final b = new Money(200, new Currency('USD');
    
    final sum = a + b;
    
    print(sum); // Prints "3.00 USD"
}
13
likes
0
pub points
65%
popularity

Publisher

verified publisherlitgroup.ru

"Dart implementation of Fowler's Money pattern"

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on money