delete method
Delete data on backend
Implementation
@override
Future<void> delete(
{required String collection, required String recordId}) async {
final key = _getKey(collection, recordId);
final indexKey = _getIndexKey(collection);
await command.send_object(['DEL', key]);
await command.send_object(['ZREM', indexKey, recordId]);
}