Flutter's foundation library has a describeEnum function that returns a short description based on an enum value.
Is there a function that would do the opposite, i.e., return enum value based on the received description?
I know about the enum_to_string, but I'm interested in vanilla Dart or Flutter standard library solution.