Deployment.fromXml constructor
Deployment.fromXml(
- XmlElement elem
Implementation
factory Deployment.fromXml(_s.XmlElement elem) {
return Deployment(
deploymentId: _s.extractXmlIntValue(elem, 'DeploymentId'),
deploymentTime: _s.extractXmlDateTimeValue(elem, 'DeploymentTime'),
status: _s.extractXmlStringValue(elem, 'Status'),
versionLabel: _s.extractXmlStringValue(elem, 'VersionLabel'),
);
}