Value_Registration constructor
Value_Registration({
- SignatureKesProduct? registration,
- StakingAddress? stakingAddress,
Implementation
factory Value_Registration({
$10.SignatureKesProduct? registration,
$9.StakingAddress? stakingAddress,
}) {
final _result = create();
if (registration != null) {
_result.registration = registration;
}
if (stakingAddress != null) {
_result.stakingAddress = stakingAddress;
}
return _result;
}