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