UpdateStopwordOptionsResponse.fromXml constructor

UpdateStopwordOptionsResponse.fromXml(
  1. XmlElement elem
)

Implementation

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