How to use switch case with throw in Dart

1 Answer

0 votes
main() {
    var n = 0;
    switch (n) {
        case 0:
            throw IntegerDivisionByZeroException();
        default:
            print("default");
    }
}





/*
run:

Unhandled exception:
IntegerDivisionByZeroException

*/

 



answered Oct 21, 2022 by avibootz

Related questions

3 answers 172 views
172 views asked Oct 21, 2022 by avibootz
1 answer 144 views
144 views asked Oct 8, 2022 by avibootz
2 answers 150 views
150 views asked Oct 21, 2022 by avibootz
1 answer 118 views
1 answer 185 views
1 answer 122 views
2 answers 163 views
...