delete abstract method

Future<void> delete(
  1. bool test(
    1. T value
    )
)

Remove elements in the collection that are true in test.

Implementation

Future<void> delete(bool Function(T value) test);