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