amount.dart 248 B

1234567891011121314
  1. import 'currency.dart';
  2. class Amount {
  3. String value;
  4. Currency currency;
  5. Amount({required this.value, required this.currency});
  6. Map<String, dynamic> toJson() =>
  7. {
  8. 'value': value,
  9. 'currency': currency.value
  10. };
  11. }