retainWhere method
Retain where (convenience method)
Implementation
void retainWhere(bool Function(T) test) {
final result = tryRetainWhere(test);
if (result.isFailure) {
RxLogger.logError(result.errorOrNull!,
context: 'Set'); // coverage:ignore-line
}
}