copyWithWrapped method
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));
}