toCamelCase method
Converts to camelCase.
'hello_world'.toCamelCase(); // 'helloWorld'
'PascalCase'.toCamelCase(); // 'pascalCase'
Implementation
String toCamelCase() {
final words = _words;
if (words.isEmpty) return '';
return words.first.toLowerCase() + words.skip(1).map(_capitalize).join();
}