withSilentErrors static method
void
withSilentErrors(
- void test()
Test with silent error logging
Implementation
static void withSilentErrors(void Function() test) {
withErrorConfig(
const RxErrorConfig(logErrors: false),
test,
);
}