Encryption.fromXml constructor

Encryption.fromXml(
  1. XmlElement? xml
)

Implementation

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