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