isAuth method

Future<bool> isAuth()

Implementation

Future<bool> isAuth() async {
  if ((await this.getURL()) != null && (await this.getURL())!.isNotEmpty) {
    return true;
  }

  return false;
}