dev
dart 6 lines 152 Bytes
Raw
1 class WalletBalance {
2 WalletBalance({required this.unlockedBalance, required this.totalBalance});
3
4 String unlockedBalance;
5 String totalBalance;
6 }