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