addLoader method
Adds a new ImageLoader for a given prefix.
This allows extending the cache to load symbols from different sources.
Implementation
@override
/// Adds a new [ImageLoader] for a given [prefix].
///
/// This allows extending the cache to load symbols from different sources.
@override
void addLoader(String prefix, ImageLoader imageLoader) {
imageLoaders[prefix] = imageLoader;
}