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