signalValueNotifier<T> function

SignalValueNotifier<T> signalValueNotifier<T>(
  1. T val, {
  2. String? debugLabel,
  3. bool autoDispose = false,
})

Implementation

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