ReactiveSet<E>.from constructor

ReactiveSet<E>.from(
  1. Iterable elements
)

Like Set.from, but creates a reactive set.

Implementation

factory ReactiveSet.from(Iterable elements) =>
    _ReactiveSet<E>(Set<E>.from(elements));