KeyGroupConfig.fromXml constructor
KeyGroupConfig.fromXml(
- XmlElement elem
Implementation
factory KeyGroupConfig.fromXml(_s.XmlElement elem) {
return KeyGroupConfig(
items: _s.extractXmlStringListValues(
_s.extractXmlChild(elem, 'Items')!, 'PublicKey'),
name: _s.extractXmlStringValue(elem, 'Name')!,
comment: _s.extractXmlStringValue(elem, 'Comment'),
);
}