Remove cached data
Future<void> remove(String key) async { memoryCache.remove(key); if (diskCache != null) { await diskCache!.remove(key); } }