SignalValueNotifier<T> constructor
SignalValueListenable from value
Implementation
SignalValueNotifier(
T val, {
String? debugLabel,
bool autoDispose = false,
}) : super.merge(
ValueNotifier<T>(val),
signal<T>(
val,
debugLabel: debugLabel,
autoDispose: autoDispose,
),
);