isNotIn method

Mask isNotIn(
  1. Set<E> pool
)

Implementation

Mask isNotIn(Set<E> pool) =>
    map((element) => !pool.contains(element)).toList().cast<bool>();