ObservableSet<T>.of constructor

ObservableSet<T>.of(
  1. Iterable<T> other, {
  2. ReactiveContext? context,
  3. String? name,
})

Implementation

ObservableSet.of(Iterable<T> other, {ReactiveContext? context, String? name})
    : this._(context ?? mainContext, Set<T>.of(other), name);