toCamelCase method

String toCamelCase()

Converts the string to camelCase. Example: 'Hello World' -> 'helloWorld'

Implementation

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