whereBetween method

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

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

Example:

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

Implementation

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