notifier<N extends BaseNotifier<T>, T> method

N notifier<N extends BaseNotifier<T>, T>(
  1. NotifyableProvider<N, T> provider
)

Shorthand for context.ref.notifier(). See Ref.notifier for more information.

Implementation

N notifier<N extends BaseNotifier<T>, T>(NotifyableProvider<N, T> provider) {
  return ref.notifier(provider);
}