Where.notIn constructor

const Where.notIn(
  1. String field,
  2. List<Object?> values
)

Implementation

const Where.notIn(String field, List<Object?> values)
  : this(field, 'not-in', values);