Convert a string to camelCase Example: "my_component" -> "myComponent"
String camelCase(String input) => ReCase(input).camelCase;