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