toCamelCase method
Converts the string to camelCase. Example: 'Hello World' -> 'helloWorld'
Implementation
String toCamelCase() => toPascalCase().withFirstLetterAsLowerCase();
Converts the string to camelCase. Example: 'Hello World' -> 'helloWorld'
String toCamelCase() => toPascalCase().withFirstLetterAsLowerCase();