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