toCamelCase method

String toCamelCase()

Converts the string to camelCase.

Implementation

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