parse static method

ImportedElements parse(
  1. Map m
)

Implementation

static ImportedElements parse(Map m) {
  return new ImportedElements(
      m['path'], m['prefix'], new List.from(m['elements']));
}