camelCase method

String camelCase(
  1. String input
)

Convert a string to camelCase Example: "my_component" -> "myComponent"

Implementation

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