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