set<E> static method

  1. @factory
GetSet<E> set<E>([
  1. Iterable<E> set = const {}
])

Encapsulates a SetNotifier, and can be used as a Set directly.

Implementation

@factory
static GetSet<E> set<E>([Iterable<E> set = const {}]) => GetSet._(_SetNotifier(set));