getCachedWidget static method
Get a cached widget for the given configuration
Implementation
static Widget? getCachedWidget(MarkerConfig config) {
final key = CacheKey.forWidget(config);
_updateAccessOrder(key);
return _widgetCache[key];
}
Get a cached widget for the given configuration
static Widget? getCachedWidget(MarkerConfig config) {
final key = CacheKey.forWidget(config);
_updateAccessOrder(key);
return _widgetCache[key];
}