Does this client support basic operations like adding and removing items from an index? If I can't add to the index, there's little point me searching :-)
For example, using the other package I can do something like:
Future addOrReplaceDeck(Deck deck) async {
AlgoliaIndexReference idx = algolia.instance.index('my_index');
var task = await idx.addObject(toJSON(deck));
}
Thank you!