notWhere method
You can filter only those elements in the values
array that do not contain any of the values for key.
values
の配列にkeyに対する値のいずれも含まれない要素のみをフィルタリングすることができます。
Implementation
TQuery notWhere(List<T?>? values) {
if (values == null) {
return _toQuery(_modelQuery);
}
return _toQuery(
_modelQuery.notWhere(
key,
values
.where((e) => e != null)
.cast<T>()
.map((e) => e as Object)
.toList(),
),
);
}