copyWith method

GetGeneratorEngineCoolantTemperatureValueResponseModel copyWith({
  1. double? minValue,
  2. double? maxValue,
  3. 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);
}