Returns the string with the first character in upper case
String titled(String string) => string[0].toUpperCase() + string.substring(1);