SideChainStakeMigration constructor
SideChainStakeMigration({})
Implementation
factory SideChainStakeMigration({
$core.List<$core.int>? validatorSrcAddr,
$core.List<$core.int>? validatorDstAddr,
$core.List<$core.int>? delegatorAddr,
$core.List<$core.int>? refundAddr,
SendOrder_Token? amount,
}) {
final result = create();
if (validatorSrcAddr != null) result.validatorSrcAddr = validatorSrcAddr;
if (validatorDstAddr != null) result.validatorDstAddr = validatorDstAddr;
if (delegatorAddr != null) result.delegatorAddr = delegatorAddr;
if (refundAddr != null) result.refundAddr = refundAddr;
if (amount != null) result.amount = amount;
return result;
}