CopyDBClusterParameterGroupResult.fromXml constructor

CopyDBClusterParameterGroupResult.fromXml(
  1. XmlElement elem
)

Implementation

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