clearCache method

Future<void> clearCache(
  1. String key
)

Implementation

Future<void> clearCache(String key) async {
  final box = Hive.box(_cacheBox);
  await box.delete(key);
}