updateStopWords method

Future<Task> updateStopWords(
  1. List<String> stopWords
)

Update stop words of the index

Implementation

Future<Task> updateStopWords(List<String> stopWords) async {
  return await _getTask(
      http.putMethod('/indexes/$uid/settings/stop-words', data: stopWords));
}