removeWhere method

void removeWhere(
  1. bool test(
    1. T element
    )
)

Implementation

void removeWhere(bool test(T element)) {
  _removeWhere(prefs, test);
}