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');
}
}
Retain where (convenience method)
void retainWhere(bool Function(T) test) {
final result = tryRetainWhere(test);
if (result.isFailure) {
RxLogger.logError(result.errorOrNull!, context: 'Set');
}
}