---------- WHERE ----------
void addWhere(String sql, [List<dynamic>? values]) { where = where == null ? sql : '($where) AND $sql'; if (values != null) params.addAll(values); }