removeAllSessionData static method

Future<void> removeAllSessionData()

Implementation

static Future<void> removeAllSessionData() async {
  await _storage.deleteAll();
  _setSessionToken("");
  _setSessionId("");
}