andText method
Add a text
condition to the group.
The logical type is LogicalType.and.
Implementation
WhereConditionGroup andText(String text) {
final item = WhereConditionItem.text(text);
item.logicalType = LogicalType.and;
items.add(item);
return this;
}