copyWith method
Implementation
HistoricalParameterValueResponseModel copyWith(
{String? $value, int? createddatetime, String? createddatetimestring}) {
return HistoricalParameterValueResponseModel(
$value: $value ?? this.$value,
createddatetime: createddatetime ?? this.createddatetime,
createddatetimestring:
createddatetimestring ?? this.createddatetimestring);
}