ref property

The Ref from the provider associated with this AsyncNotifier.

Implementation

@override
AutoDisposeAsyncNotifierProviderRef<State> get ref {
  final element = _element;
  if (element == null) throw StateError(uninitializedElementError);

  return element;
}