parse static method

ExistingImport parse(
  1. Map m
)

Implementation

static ExistingImport parse(Map m) {
  return new ExistingImport(m['uri'], new List.from(m['elements']));
}