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