merge method

void merge(
  1. List<S2Choice<T>> choices
)

Add every value in supplied values into the selection

Implementation

void merge(List<S2Choice<T>> choices) {
  choice = List.from(choice)
    ..addAll(choices)
    ..toSet()
    ..toList();
}