validNotGoLogin method

bool validNotGoLogin()

Implementation

bool validNotGoLogin() {
  bool isValid = this.isDataVali();

  if (!isValid && 401 != this.code) {
    this.message.apiMessageShow();
  }

  return isValid;
}