orText method

WhereConditionGroup orText(
  1. String text
)

Add a text condition to the group.

The logical type is LogicalType.or.

Implementation

WhereConditionGroup orText(String text) {
  final item = WhereConditionItem.text(text);
  item.logicalType = LogicalType.or;
  items.add(item);
  return this;
}