clearConfigCache method

Future<void> clearConfigCache()

Clears the cached CDN configuration

Implementation

Future<void> clearConfigCache() async {
  try {
    removeValue(_configCacheKey);
    removeValue(_configTimestampKey);
  } catch (error) {
    // ignore: avoid_print
    print('Error clearing CDN config cache: $error');
  }
}