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