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