Convert a string to PascalCase Example: "my_component" -> "MyComponent"
String pascalCase(String input) => ReCase(input).pascalCase;