Muezz
06/04/2022, 3:17 AMdart
// Auth Instance Dependency Provider
final _authServiceRiverpod = Provider<AuthService>(
(ref) => AuthService(),
);
// Auth Controller
// All UI elemts that depend on auth talk trhough this class
final authControllerRiverpod = StateNotifierProvider<AuthController, AuthState>(
(ref) => AuthController(
ref.watch(_authServiceRiverpod),
),
);