I know I can catch a specific Exception type in dart with the following:
try { ... } on SpecificException catch(e) { ... }
But is there a w
No, there isn't, but you can do this:
try { ... } catch (e) { if (e is A || e is B { ... } else { rethrow; } }