LxSet<E> constructor

LxSet<E>([
  1. Set<E>? initial,
  2. String? name,
  3. bool isSensitive = false
])

Creates a reactive set.

Backed by initial if provided, otherwise an empty set.

Implementation

LxSet([Set<E>? initial, String? name, bool isSensitive = false])
    : super(initial ?? <E>{}, name: name, isSensitive: isSensitive);