withErrorLogger static method
Test with custom error logger
Implementation
static void withErrorLogger(
void Function(RxException error) logger,
void Function() test,
) {
withErrorConfig(
RxErrorConfig(customLogger: logger),
test,
);
}