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