Converts input to camelCase.
input
Example: "my_feature" -> "myFeature"
static String toCamelCase(String input) { return ReCase(input).camelCase; }