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