copyWith method

HistoricalParameterValueResponseModel copyWith({
  1. String? $value,
  2. int? createddatetime,
  3. String? createddatetimestring,
})

Implementation

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