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