SupportedPlatform.fromXml constructor

SupportedPlatform.fromXml(
  1. XmlElement elem
)

Implementation

factory SupportedPlatform.fromXml(_s.XmlElement elem) {
  return SupportedPlatform(
    name: _s.extractXmlStringValue(elem, 'Name'),
  );
}