ClusterParameterStatus.fromXml constructor
ClusterParameterStatus.fromXml(
- XmlElement elem
Implementation
factory ClusterParameterStatus.fromXml(_s.XmlElement elem) {
return ClusterParameterStatus(
parameterApplyErrorDescription:
_s.extractXmlStringValue(elem, 'ParameterApplyErrorDescription'),
parameterApplyStatus:
_s.extractXmlStringValue(elem, 'ParameterApplyStatus'),
parameterName: _s.extractXmlStringValue(elem, 'ParameterName'),
);
}