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