ClusterParameterStatus.fromXml constructor

ClusterParameterStatus.fromXml(
  1. 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'),
  );
}