notifier property
Obtains the ChangeNotifier associated with this provider, without listening to state changes.
This is typically used to invoke methods on a ChangeNotifier. For example:
Button(
onTap: () => ref.read(changeNotifierProvider.notifier).increment(),
)
This listenable will notify its notifiers if the ChangeNotifier instance changes. This may happen if the provider is refreshed or one of its dependencies has changes.
Implementation
@override
// ignore: deprecated_member_use, deprecated_member_use_from_same_package
late final AlwaysAliveRefreshable<NotifierT> notifier =
_notifier<NotifierT>(this);