isAuthenticated static method

Future<bool> isAuthenticated()

Check if the user is authenticated.

Implementation

static Future<bool> isAuthenticated() async {
  return (await Nylo.user()) != null;
}