GetTotalBalanceResponse constructor
GetTotalBalanceResponse({
- String? walletName,
- Int64? totalBalance,
Implementation
factory GetTotalBalanceResponse({
$core.String? walletName,
$fixnum.Int64? totalBalance,
}) {
final _result = create();
if (walletName != null) {
_result.walletName = walletName;
}
if (totalBalance != null) {
_result.totalBalance = totalBalance;
}
return _result;
}