copyWith method

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

Implementation

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