StartStopNotifier<T> typedef

StartStopNotifier<T> = Unsubscriber? Function(({Subscriber<T> set, void Function(Updater<T> updater) update}))

Store notifier.

Implementation

typedef StartStopNotifier<T> = Unsubscriber? Function(
    ({
      Subscriber<T> set,
      void Function(Updater<T> updater) update,
    }));