Flutter: Test that a specific exception is thrown
问题 in short, throwsA(anything) does not suffice for me while unit testing in dart. How to I test for a specific error message or type ? Here is the error I would like to catch: class MyCustErr implements Exception { String term; String errMsg() => 'You have already added a container with the id $term. Duplicates are not allowed'; MyCustErr({this.term}); } here is the current assertion that passes, but would like to check for the error type above: expect(() => operations.lookupOrderDetails(),