parse static method

HoverInformation parse(
  1. Map m
)

Implementation

static HoverInformation parse(Map m) {
  return new HoverInformation(m['offset'], m['length'],
      containingLibraryPath: m['containingLibraryPath'],
      containingLibraryName: m['containingLibraryName'],
      containingClassDescription: m['containingClassDescription'],
      dartdoc: m['dartdoc'],
      elementDescription: m['elementDescription'],
      elementKind: m['elementKind'],
      isDeprecated: m['isDeprecated'],
      parameter: m['parameter'],
      propagatedType: m['propagatedType'],
      staticType: m['staticType']);
}