removeWhere method

Future<bool> removeWhere({
  1. bool notify = true,
  2. required dynamic condition(
    1. String key
    ),
})

Remove by checking condition.

Implementation

Future<bool> removeWhere(
    {bool notify = true, required Function(String key) condition}) async {
  assert(_key != null);
  return _decorator.removeWhere(condition: condition, notify: notify);
}