14 lines
248 B
Dart
Raw Normal View History

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