WithdrawStake constructor

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