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?
throwsA(anything)
Her
After `TypeMatcher<>' has been deprecated in Flutter 1.12.1 I found this to work:
expect(() => operations.lookupOrderDetails(), throwsA(isInstanceOf()));