isAuthenticated method

bool isAuthenticated()

Implementation

bool isAuthenticated() {
  Map<String, String> headers = {};
  var userAuth = _getUserAuth();
  if (userAuth != null) {
    userAuth.applyToParams([], headers);
  }
  return headers.isNotEmpty;
}