static String convertUpcaseFirst(String convert) { final first = convert.substring(0, 1); return "${first.toUpperCase()}${convert.substring(1)}"; }