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