copyWith method
Implementation
FuelPrice copyWith({FuelType? type, Money? price, DateTime? updateTime}) {
return FuelPrice(
type: type ?? this.type,
price: price ?? this.price,
updateTime: updateTime ?? this.updateTime,
);
}
FuelPrice copyWith({FuelType? type, Money? price, DateTime? updateTime}) {
return FuelPrice(
type: type ?? this.type,
price: price ?? this.price,
updateTime: updateTime ?? this.updateTime,
);
}