Method to normalize the input string to .ENV compatible keys.
input
For example: isStudent1 will have an output of IS_STUDENT_1
isStudent1
IS_STUDENT_1
String normalize(String input) { return camelCaseToSnakeCase(input).toUpperCase(); }