SetSignal<E> constructor

SetSignal<E>(
  1. Set<E> initial, {
  2. String? debugLabel,
  3. bool equals(
    1. Set<E> a,
    2. Set<E> b
    )?,
  4. Set<E> guard(
    1. Set<E> current,
    2. Set<E> next
    )?,
  5. VoidCallback? onListen,
  6. VoidCallback? onCancel,
})

Implementation

SetSignal(
  Set<E> initial, {
  String? debugLabel,
  super.equals,
  super.guard,
  super.onListen,
  super.onCancel,
}) : super(Set<E>.from(initial), debugLabel: debugLabel);