Cipher.fromXml constructor
Cipher.fromXml(
- XmlElement elem
Implementation
factory Cipher.fromXml(_s.XmlElement elem) {
return Cipher(
name: _s.extractXmlStringValue(elem, 'Name'),
priority: _s.extractXmlIntValue(elem, 'Priority'),
);
}