andText method

WhereConditionGroup andText(
  1. String text
)

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;
}