clear method

Future<bool> clear()

Implementation

Future<bool> clear() async {
  this._token = null;
  bool isCleared = await _cacheService.clear();
  notifyListeners();
  return isCleared;
}