copyWith method

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

Implementation

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