copyWith method

StakeRegistration copyWith({
  1. StakeCred? stakeCredential,
})

Implementation

StakeRegistration copyWith({StakeCred? stakeCredential}) {
  return StakeRegistration(stakeCredential ?? this.stakeCredential);
}