clearCache method

Future<void> clearCache()

Clears all cached data.

Use this sparingly as it removes all cache entries.

Example:

// On user logout
await client.clearCache();

Implementation

Future<void> clearCache() async {
  _cacheLink.clear();
}