notWhere method

void notWhere(
  1. void f(
    1. Where
    )
)

Shorthand for calling where.or with a Where clause.

Implementation

void notWhere(void Function(Where) f) {
  var w = newWhereClause();
  f(w);
  where?.not(w);
}