provider property
Provider for the AuthService class.
Implementation
static Provider<AuthService> provider = Provider<AuthService>((ref) {
final authService = AuthService(ref.watch(AuthDataService.provider));
ref.onDispose(authService.dispose);
return authService;
});