clearCache method

void clearCache({
  1. bool onlyValues = false,
})

Clear cache with different levels

Implementation

void clearCache({bool onlyValues = false}) {
  _decodedCache.clear();
  _fullyLoadedPallets.clear();

  if (!onlyValues) {
    _metadataCache.clear();
  }
}