parse static method

ImportedElementSet parse(
  1. Map m
)

Implementation

static ImportedElementSet parse(Map m) {
  return new ImportedElementSet(new List.from(m['strings']),
      new List.from(m['uris']), new List.from(m['names']));
}