Convert a string to Title Case Example: "my_component" -> "My Component"
String titleCase(String input) => ReCase(input).titleCase;