static String firstBig(String className) { String first = className[0].toUpperCase(); String other = className.substring(1); return "${first}${other}"; }