copyWithWrapped method
Implementation
GetGeneratorHistoricalParameterValueResponseModel copyWithWrapped(
{Wrapped<String?>? $value,
Wrapped<int?>? createdDateTime,
Wrapped<String?>? createdDateTimeString}) {
return GetGeneratorHistoricalParameterValueResponseModel(
$value: ($value != null ? $value.value : this.$value),
createdDateTime: (createdDateTime != null
? createdDateTime.value
: this.createdDateTime),
createdDateTimeString: (createdDateTimeString != null
? createdDateTimeString.value
: this.createdDateTimeString));
}