signalValueNotifier<T> function
Implementation
SignalValueNotifier<T> signalValueNotifier<T>(
T val, {
String? debugLabel,
bool autoDispose = false,
}) {
return SignalValueNotifier<T>(
val,
debugLabel: debugLabel,
autoDispose: autoDispose,
);
}