copyWith method
Implementation
PoolRetirement copyWith({
Ed25519KeyHash? poolKeyHash,
int? epoch,
}) {
return PoolRetirement(
poolKeyHash: poolKeyHash ?? this.poolKeyHash,
epoch: epoch ?? this.epoch);
}
PoolRetirement copyWith({
Ed25519KeyHash? poolKeyHash,
int? epoch,
}) {
return PoolRetirement(
poolKeyHash: poolKeyHash ?? this.poolKeyHash,
epoch: epoch ?? this.epoch);
}