14 lines
248 B
Dart
Raw Permalink Normal View History

2022-07-03 20:52:22 +03:00
import 'currency.dart';
class Amount {
2023-12-22 16:57:25 +03:00
String value;
2022-07-03 20:52:22 +03:00
Currency currency;
Amount({required this.value, required this.currency});
Map<String, dynamic> toJson() =>
{
'value': value,
'currency': currency.value
};
}