toCamelCase method
Converts the string to camelCase.
Implementation
String toCamelCase() => this.toPascalCase().withFirstLetterAsLowerCase();
Converts the string to camelCase.
String toCamelCase() => this.toPascalCase().withFirstLetterAsLowerCase();