KeyGroupSummary.fromXml constructor

KeyGroupSummary.fromXml(
  1. XmlElement elem
)

Implementation

factory KeyGroupSummary.fromXml(_s.XmlElement elem) {
  return KeyGroupSummary(
    keyGroup: KeyGroup.fromXml(_s.extractXmlChild(elem, 'KeyGroup')!),
  );
}