class Money { final String amount; final String currency; const Money({ required this.amount, required this.currency, }); }