checkAuthed method

bool checkAuthed()

Implementation

bool checkAuthed() {
  if (this._auth != null && this.checkExpire(this._expire)) {
    return true;
  }
  return false;
}