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