removeWhere method

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

Remove by checking condition.

Implementation

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