Returns input with first letter capitalized and the rest lowercase.
input
String toCapCase(String input) => '${input[0].toUpperCase()}${input.substring(1).toLowerCase()}';