copyWith method

GetGeneratorEngineSpeedValueResponseModel copyWith({
  1. double? minValue,
  2. double? maxValue,
  3. List<GetGeneratorHistoricalParameterValueResponseModel>? engineSpeed,
})

Implementation

GetGeneratorEngineSpeedValueResponseModel copyWith(
    {double? minValue,
    double? maxValue,
    List<GetGeneratorHistoricalParameterValueResponseModel>? engineSpeed}) {
  return GetGeneratorEngineSpeedValueResponseModel(
      minValue: minValue ?? this.minValue,
      maxValue: maxValue ?? this.maxValue,
      engineSpeed: engineSpeed ?? this.engineSpeed);
}