Returns the String s, with the first letter capitalized.
s
String capitalizeFirstLetter(String s) => s[0].toUpperCase() + s.substring(1);