tryAutoLogin method
Implementation
Future<void> tryAutoLogin() async {
final user = await getUserDetails();
if (user != null) {
_userLoggedInStreamController.add(user);
}
}
Future<void> tryAutoLogin() async {
final user = await getUserDetails();
if (user != null) {
_userLoggedInStreamController.add(user);
}
}