Withdraw constructor
Withdraw({
- String? stakingAddress,
- Int64? withdrawAmount,
Implementation
factory Withdraw({
$core.String? stakingAddress,
$fixnum.Int64? withdrawAmount,
}) {
final result = create();
if (stakingAddress != null) result.stakingAddress = stakingAddress;
if (withdrawAmount != null) result.withdrawAmount = withdrawAmount;
return result;
}