static List<String> toList<T extends Enum>(final List<T> values) { return values.map((e) => e.name.toFirstUppercase()).toList(); }