resetStopWords method

Future<Task> resetStopWords()

Reset stop words of the index.

Implementation

Future<Task> resetStopWords() async {
  return await _getTask(
      http.deleteMethod('/indexes/$uid/settings/stop-words'));
}