withSilentErrors static method

void withSilentErrors(
  1. void test()
)

Test with silent error logging

Implementation

static void withSilentErrors(void Function() test) {
  withErrorConfig(
    const RxErrorConfig(logErrors: false),
    test,
  );
}