copyWith method

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