whereNotIn method

List whereNotIn(
  1. String key,
  2. List<num> params
)

Removes elements from the list that have a specified item value

that is not contained within the given list

Example:

list.whereNotIn("key", [value1, value2])

Implementation

List<dynamic> whereNotIn(String key, List<num> params) =>
    FxList.whereNotIn(this, key, params);