parse static method

Element parse(
  1. Map m
)

Implementation

static Element parse(Map m) {
  return new Element(m['kind'], m['name'], m['flags'],
      location: m['location'] == null ? null : Location.parse(m['location']),
      parameters: m['parameters'],
      returnType: m['returnType'],
      typeParameters: m['typeParameters'],
      aliasedType: m['aliasedType']);
}