copyWith method

SetParameterArgs copyWith({
  1. int? id,
  2. String? $value,
  3. String? generator,
  4. String? ats,
})

Implementation

SetParameterArgs copyWith(
    {int? id, String? $value, String? generator, String? ats}) {
  return SetParameterArgs(
      id: id ?? this.id,
      $value: $value ?? this.$value,
      generator: generator ?? this.generator,
      ats: ats ?? this.ats);
}