toTitleCase static method

String toTitleCase(
  1. String input
)

Converts input to Title Case.

Example: "my_feature" -> "My Feature"

Implementation

static String toTitleCase(String input) {
  return ReCase(input).titleCase;
}