copyWith method
- double? minValue,
- double? maxValue,
- List<
GetGeneratorHistoricalParameterValueResponseModel> ? lubeOilTemperature,
Implementation
GetGeneratorLubeOilTemperatureValueResponseModel copyWith(
{double? minValue,
double? maxValue,
List<GetGeneratorHistoricalParameterValueResponseModel>?
lubeOilTemperature}) {
return GetGeneratorLubeOilTemperatureValueResponseModel(
minValue: minValue ?? this.minValue,
maxValue: maxValue ?? this.maxValue,
lubeOilTemperature: lubeOilTemperature ?? this.lubeOilTemperature);
}