removeWhere method
Remove where (convenience method)
Implementation
void removeWhere(bool Function(K key, V value) predicate) {
final result = tryRemoveWhere(predicate);
// coverage:ignore-start
if (result.isFailure) {
RxLogger.logError(result.errorOrNull!, context: 'Map');
}
// coverage:ignore-end
}