parse static method

ExistingImports parse(
  1. Map m
)

Implementation

static ExistingImports parse(Map m) {
  return new ExistingImports(ImportedElementSet.parse(m['elements']),
      new List.from(m['imports'].map((obj) => ExistingImport.parse(obj))));
}