Flutter – Switch enum on attributes in dart
I am having this enum: enum ContentError { e410('Exception: 410'), e411('Excetion: 411'), e412('Exception: 412'), e413('Exception: 413'); const ContentError(this.name); final String name; } Now I get some String and I want to do a switch case on the names of the…