SetSignal<E> constructor

SetSignal<E>(
  1. Set<E> value, {
  2. String? debugLabel,
  3. bool autoDispose = false,
})

Creates a SetSignal with the given value.

Implementation

SetSignal(
  super.value, {
  super.debugLabel,
  super.autoDispose,
});