copyWith method
- double? minValue,
- double? maxValue,
- 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);
}