noopErrorHandler function

void noopErrorHandler({
  1. required String source,
  2. required ArmatureError error,
  3. required Map<String, String> meta,
})

Error handler that swallows every error. Use in tests where the recoverable-error path isn't the subject under test.

Implementation

void noopErrorHandler({
  required String source,
  required ArmatureError error,
  required Map<String, String> meta,
}) {}