GetBalanceRequest constructor
GetBalanceRequest({
- String? uuid,
- String? currency,
- WalletType? walletType,
Implementation
factory GetBalanceRequest({
$core.String? uuid,
$core.String? currency,
WalletType? walletType,
}) {
final $result = create();
if (uuid != null) {
$result.uuid = uuid;
}
if (currency != null) {
$result.currency = currency;
}
if (walletType != null) {
$result.walletType = walletType;
}
return $result;
}