removeWhere method

void removeWhere(
  1. bool condition(
    1. E t,
    2. List<E> currList
    )
)

Implementation

void removeWhere(bool Function(E t, List<E> currList) condition) => update(() => _list.removeWhere((t) => condition(t, list)));