UpdateStemmingOptionsResponse.fromXml constructor

UpdateStemmingOptionsResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory UpdateStemmingOptionsResponse.fromXml(_s.XmlElement elem) {
  return UpdateStemmingOptionsResponse(
    stems: StemmingOptionsStatus.fromXml(_s.extractXmlChild(elem, 'Stems')!),
  );
}