hasAny method

  1. @override
bool hasAny(
  1. List<S2Choice<T>> choices
)
override

Returns true if the selection has any of the supplied values

Implementation

@override
bool hasAny(List<S2Choice<T>> choices) {
  return choices.any((e) => has(e));
}