toValueNotifier method

SignalValueNotifier<T> toValueNotifier()

Convert a ValueListenable to Signal to be used in builders and other existing widgets like ValueListenableBuilder and allow for mutation

Implementation

SignalValueNotifier<T> toValueNotifier() {
  return SignalValueNotifier<T>.fromSignal(this);
}