ImportCache.only constructor
Creates an import cache without any globally-available importers, and only the passed in importers.
Implementation
ImportCache.only(Iterable<Importer> importers, {Logger? logger})
: _importers = List.unmodifiable(importers),
_logger = logger ?? const Logger.stderr();