SSEKMS.fromXml constructor

SSEKMS.fromXml(
  1. XmlElement elem
)

Implementation

factory SSEKMS.fromXml(_s.XmlElement elem) {
  return SSEKMS(
    keyId: _s.extractXmlStringValue(elem, 'KeyId')!,
  );
}