CreateDBClusterParameterGroupResult.fromXml constructor

CreateDBClusterParameterGroupResult.fromXml(
  1. XmlElement elem
)

Implementation

factory CreateDBClusterParameterGroupResult.fromXml(_s.XmlElement elem) {
  return CreateDBClusterParameterGroupResult(
    dBClusterParameterGroup: _s
        .extractXmlChild(elem, 'DBClusterParameterGroup')
        ?.let((e) => DBClusterParameterGroup.fromXml(e)),
  );
}