isNotIn method

JoinQueryBuilder isNotIn(
  1. FieldName fieldName,
  2. Iterable values
)
inherited

A shortcut for where with Operator.notInList.

Implementation

RT isNotIn(FieldName fieldName, Iterable<dynamic> values) =>
    where(fieldName, Operator.notInList, values);