notInList method

  1. @override
WhereCondition notInList(
  1. List<T> values
)
override

Implementation

@override
WhereCondition notInList(List<T> values) => WhereCondition(
  name!,
  'NOT IN',
  values.map((e) => e.name).toList(),
  sourceColumn: this,
);