GetTotalBalanceResponse constructor

GetTotalBalanceResponse({
  1. String? walletName,
  2. 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;
}