dropIndex method
Drop columns from an existing table.
Implementation
Future<void> dropIndex({required String table, required String name, List<String>? namespace}) async {
await room.sendRequest("database.drop_index", {"table": table, "name": name, "namespace": namespace});
}