removeWhere method
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);
}