SetObs<E> constructor

SetObs<E>(
  1. Set<E> value, {
  2. bool autoNotify = true,
  3. ValueChanged<Set<E>>? onChanged,
  4. bool? immediate,
  5. String? cacheKey,
  6. ElSerialize? serialize,
  7. ElStorage? storage,
})

Implementation

SetObs(
  super.value, {
  super.autoNotify,
  super.onChanged,
  super.immediate,
  super.cacheKey,
  super.serialize,
  super.storage,
});