hasAll method

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

Returns `true if the selection has every of the supplied values

Implementation

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