parse static method
Implementation
static KeyModifier parse(String string) {
return KeyModifier.values.firstWhere((e) => describeEnum(e) == string);
}
static KeyModifier parse(String string) {
return KeyModifier.values.firstWhere((e) => describeEnum(e) == string);
}