Converts input to Title Case.
input
Example: "my_feature" -> "My Feature"
static String toTitleCase(String input) { return ReCase(input).titleCase; }