CreatePlatformVersionResult.fromXml constructor

CreatePlatformVersionResult.fromXml(
  1. XmlElement elem
)

Implementation

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