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