copyWith method

StakeRegistrationConway copyWith({
  1. Credential? stakeCredential,
  2. BigInt? coin,
})

Implementation

StakeRegistrationConway copyWith(
    {Credential? stakeCredential, BigInt? coin}) {
  return StakeRegistrationConway(
      stakeCredential: stakeCredential ?? this.stakeCredential,
      coin: coin ?? this.coin);
}