SignalValueNotifier<T> constructor

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

Implementation

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