provider property

Provider<AuthService> provider
getter/setter pair

Provider for the AuthService class.

Implementation

static Provider<AuthService> provider = Provider<AuthService>((ref) {
  final authService = AuthService(ref.watch(AuthDataService.provider));
  return authService;
});