copyWith method
Implementation
MinusOption copyWith({
ID? id,
FGeneralTypeInput? value,
}) {
return MinusOption(
id: id ?? this.id,
value: value ?? this.value,
);
}
MinusOption copyWith({
ID? id,
FGeneralTypeInput? value,
}) {
return MinusOption(
id: id ?? this.id,
value: value ?? this.value,
);
}