PublicKeyConfig.fromXml constructor
PublicKeyConfig.fromXml(
- XmlElement elem
Implementation
factory PublicKeyConfig.fromXml(_s.XmlElement elem) {
return PublicKeyConfig(
callerReference: _s.extractXmlStringValue(elem, 'CallerReference')!,
encodedKey: _s.extractXmlStringValue(elem, 'EncodedKey')!,
name: _s.extractXmlStringValue(elem, 'Name')!,
comment: _s.extractXmlStringValue(elem, 'Comment'),
);
}