Encryption.fromXml constructor
Encryption.fromXml(
- XmlElement? xml
Implementation
Encryption.fromXml(XmlElement? xml) {
encryptionType = getProp(xml, 'EncryptionType')?.innerText;
kMSContext = getProp(xml, 'KMSContext')?.innerText;
kMSKeyId = getProp(xml, 'KMSKeyId')?.innerText;
}