ImportCache.only constructor

ImportCache.only(
  1. Iterable<Importer> importers
)

Creates an import cache without any globally-available importers, and only the passed in importers.

Implementation

ImportCache.only(Iterable<Importer> importers)
    : _importers = List.unmodifiable(importers);