copyWith method
Implementation
ExUnitPrices copyWith({UnitInterval? memPrice, UnitInterval? stepPrice}) {
return ExUnitPrices(
memPrice: memPrice ?? this.memPrice,
stepPrice: stepPrice ?? this.stepPrice,
);
}
ExUnitPrices copyWith({UnitInterval? memPrice, UnitInterval? stepPrice}) {
return ExUnitPrices(
memPrice: memPrice ?? this.memPrice,
stepPrice: stepPrice ?? this.stepPrice,
);
}