DescribeStopwordOptionsResponse.fromXml constructor

DescribeStopwordOptionsResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory DescribeStopwordOptionsResponse.fromXml(_s.XmlElement elem) {
  return DescribeStopwordOptionsResponse(
    stopwords:
        StopwordOptionsStatus.fromXml(_s.extractXmlChild(elem, 'Stopwords')!),
  );
}