clearCache method

void clearCache([
  1. String? key
])

مسح ذاكرة التخزين المؤقت لمفتاح معين أو ذاكرة التخزين المؤقت بالكامل Clear cache for specific key or entire cache

Implementation

void clearCache([String? key]) {
  if (key != null) {
    _cache.remove(key);
  } else {
    _cache.clear();
  }
}