Delete records from a table.
Future<void> delete({required String table, required String where}) async { await room.sendRequest("database.delete", {"table": table, "where": where}); }