SseKmsEncryptedObjects.fromXml constructor

SseKmsEncryptedObjects.fromXml(
  1. XmlElement elem
)

Implementation

factory SseKmsEncryptedObjects.fromXml(_s.XmlElement elem) {
  return SseKmsEncryptedObjects(
    status: _s
        .extractXmlStringValue(elem, 'Status')!
        .toSseKmsEncryptedObjectsStatus(),
  );
}