copyWith method
Implementation
GetGeneratorHistoricalParameterValueResponseModel copyWith(
{String? $value, int? createdDateTime, String? createdDateTimeString}) {
return GetGeneratorHistoricalParameterValueResponseModel(
$value: $value ?? this.$value,
createdDateTime: createdDateTime ?? this.createdDateTime,
createdDateTimeString:
createdDateTimeString ?? this.createdDateTimeString);
}