where method

void where(
  1. bool test(
    1. E
    )
)

As Iterable.where, but updates the builder in place. Returns nothing.

This method is an alias of retainWhere.

Implementation

void where(bool Function(E) test) => retainWhere(test);