remove static method

void remove(
  1. MarkerConfig config
)

Remove specific entry from cache

Implementation

static void remove(MarkerConfig config) {
  final widgetKey = CacheKey.forWidget(config);
  final bitmapKey = CacheKey.forBitmap(config);
  _widgetCache.remove(widgetKey);
  _bitmapCache.remove(bitmapKey);
  _cacheAccessOrder.remove(widgetKey);
  _cacheAccessOrder.remove(bitmapKey);
}