whereOr method

Sqler whereOr(
  1. List<Condition> conditions
)

Adds multiple WHERE conditions combined with OR.

Implementation

Sqler whereOr(List<Condition> conditions) {
  return where(OrWhere(conditions));
}