removeWhere<Y> abstract method

Future<void> removeWhere<Y>(
  1. String collection,
  2. bool predicate(
    1. Y item
    )
)

Implementation

Future<void> removeWhere<Y>(
  String collection,
  bool Function(Y item) predicate,
);