Signal<T> constructor
- T value, {
- String? debugLabel,
- bool equals(
- T a,
- T b
- T guard(
- T current,
- T next
- VoidCallback? onListen,
- VoidCallback? onCancel,
Creates a signal with an initial value.
Implementation
Signal(
super.value, {
this.debugLabel,
super.equals,
super.guard,
super.onListen,
super.onCancel,
});