Staking_Restake constructor
Staking_Restake(
{ - Int64? bucketIndex,
- int? stakedDuration,
- bool? autoStake,
- List<int>? payload,
})
Implementation
factory Staking_Restake({
$fixnum.Int64? bucketIndex,
$core.int? stakedDuration,
$core.bool? autoStake,
$core.List<$core.int>? payload,
}) {
final result = create();
if (bucketIndex != null) result.bucketIndex = bucketIndex;
if (stakedDuration != null) result.stakedDuration = stakedDuration;
if (autoStake != null) result.autoStake = autoStake;
if (payload != null) result.payload = payload;
return result;
}