DeletePlatformVersionResult.fromXml constructor

DeletePlatformVersionResult.fromXml(
  1. XmlElement elem
)

Implementation

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