whereIn method

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

Removes elements from the list that do not have a specified item value

that is not contained within the given list

Example:

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

Implementation

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