removeWhere method

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

Remove by checking condition.

Implementation

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