isLoggedIn method

Future<bool> isLoggedIn()

Implementation

Future<bool> isLoggedIn() async {
  DRFAuth auth = DRFAuth(cleanBaseUrl(baseUrl), usernameField, cleanPath(tokenPath), cleanPath(refreshPath));
  return auth.isLoggedIn();
}