authIsAuthenticated function

Future<bool> authIsAuthenticated()

Check if the user is authenticated

Implementation

Future<bool> authIsAuthenticated() async {
  return await Auth.isAuthenticated();
}