FieldLevelEncryptionProfileConfig.fromXml constructor

FieldLevelEncryptionProfileConfig.fromXml(
  1. XmlElement elem
)

Implementation

factory FieldLevelEncryptionProfileConfig.fromXml(_s.XmlElement elem) {
  return FieldLevelEncryptionProfileConfig(
    callerReference: _s.extractXmlStringValue(elem, 'CallerReference')!,
    encryptionEntities: EncryptionEntities.fromXml(
        _s.extractXmlChild(elem, 'EncryptionEntities')!),
    name: _s.extractXmlStringValue(elem, 'Name')!,
    comment: _s.extractXmlStringValue(elem, 'Comment'),
  );
}