I have an array of strings present in firestore. I want to edit the string present at a particular index. How can I do this?
For example, let the array be ["help","me","please"];
How can I change "help" to "don't help" in flutter?
The closest I've gotten to editing the array is adding an element, which I do by FieldValue.arrayunion().
Is it possible to edit an element present at a particular index? Or am I gonna have to fetch the entire array, update it locally, and then upload the entire array?