Returns the string when each word starts with a capital letter
String titledEach(String string) => string.split(" ").map(titled).join(" ");