tryAutoLogin method

Future<void> tryAutoLogin()

Implementation

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