clearCacheStorage static method
dynamic
clearCacheStorage()
Clears the apiCacheStorage and clears the Stored Token.
Implementation
static clearCacheStorage() async {
await _storage.write(_tokenStorageKey, _tokenNotFoundKey);
await _storage.erase();
}