toCamelCase method

String toCamelCase()

Converts the string to camelCase.

Implementation

String toCamelCase() => toPascalCase().withFirstLetterAsLowerCase();