clearMetadataCache method

  1. @override
void clearMetadataCache()

Clears the internal metadata cache.

Useful when pod definitions change at runtime and the cache needs to be refreshed.

Usage Example:

// After dynamic configuration changes
factory.clearMetadataCache();

Implementation

@override
void clearMetadataCache() {
  getPodFactory().clearMetadataCache();

  if (_parent != null) {
    _parent!.getPodFactory().clearMetadataCache();
  }
}