Cipher.fromXml constructor

Cipher.fromXml(
  1. XmlElement elem
)

Implementation

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