copyWithWrapped method

HistoricalParameterValueResponseModel copyWithWrapped({
  1. Wrapped<String?>? $value,
  2. Wrapped<int?>? createddatetime,
  3. Wrapped<String?>? createddatetimestring,
})

Implementation

HistoricalParameterValueResponseModel copyWithWrapped(
    {Wrapped<String?>? $value,
    Wrapped<int?>? createddatetime,
    Wrapped<String?>? createddatetimestring}) {
  return HistoricalParameterValueResponseModel(
      $value: ($value != null ? $value.value : this.$value),
      createddatetime: (createddatetime != null
          ? createddatetime.value
          : this.createddatetime),
      createddatetimestring: (createddatetimestring != null
          ? createddatetimestring.value
          : this.createddatetimestring));
}