copyWith method

GetGeneratorHistoricalParameterValueResponseModel copyWith({
  1. String? $value,
  2. int? createdDateTime,
  3. String? createdDateTimeString,
})

Implementation

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