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