titleCase method

String titleCase(
  1. String input
)

Convert a string to Title Case Example: "my_component" -> "My Component"

Implementation

String titleCase(String input) => ReCase(input).titleCase;