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