clearCache static method

void clearCache()

Clears the internal cache.

This method removes all cached entries from the internal cache. Useful for freeing memory or forcing fresh data retrieval.

Example usage:

GoogleMapsUrlExtractor.clearCache();

Implementation

static void clearCache() {
  _cache.clear();
}