omit method

void omit(
  1. List<S2Choice<T>>? choices
)

Removes every value in supplied values from the selection

Implementation

void omit(List<S2Choice<T>>? choices) {
  choice = List.from(choice)..removeWhere((e) => choices!.contains(e));
}