cake_wallet/lib/view_model/dashboard/wallet_balance.dart
2022-10-12 13:09:57 -04:00

6 lines
No EOL
151 B
Dart

class WalletBalance {
WalletBalance({required this.unlockedBalance, required this.totalBalance});
String unlockedBalance;
String totalBalance;
}