copyWith method

DivideOption copyWith({
  1. ID? id,
  2. FGeneralTypeInput? value,
})

Implementation

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