static String toCapitalFirstLetter(String convert) { return "${convert[0].toUpperCase()}${convert.substring(1)}"; }