whereNotBetween method

List whereNotBetween(
  1. String key,
  2. num start,
  3. num end
)

Filters the collection by determining if a specified item value is outside of a given range

Example:

list.whereNotBetween("key", start, end)

Implementation

List<dynamic> whereNotBetween(String key, num start, num end) =>
    FxList.whereNotBetween(this, key, start, end);