static NewEnum fromString(String enumString) { return NewEnum.values .firstWhere((e) => e.toStringValue() == enumString); }