EncryptionEntity.fromXml constructor

EncryptionEntity.fromXml(
  1. XmlElement elem
)

Implementation

factory EncryptionEntity.fromXml(_s.XmlElement elem) {
  return EncryptionEntity(
    fieldPatterns:
        FieldPatterns.fromXml(_s.extractXmlChild(elem, 'FieldPatterns')!),
    providerId: _s.extractXmlStringValue(elem, 'ProviderId')!,
    publicKeyId: _s.extractXmlStringValue(elem, 'PublicKeyId')!,
  );
}