notInList method

Condition notInList (
  1. List<int> list
)

Implementation

Condition notInList(List<int> list) {
  return _opList(list, ConditionOp.notIn);
}