CreateHsmConfigurationResult.fromXml constructor

CreateHsmConfigurationResult.fromXml(
  1. XmlElement elem
)

Implementation

factory CreateHsmConfigurationResult.fromXml(_s.XmlElement elem) {
  return CreateHsmConfigurationResult(
    hsmConfiguration: _s
        .extractXmlChild(elem, 'HsmConfiguration')
        ?.let((e) => HsmConfiguration.fromXml(e)),
  );
}