Value_Registration constructor

Value_Registration({
  1. SignatureKesProduct? registration,
  2. 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;
}