camelCaseFirstLower function
Implementation
String camelCaseFirstLower(String text) {
final camelCaseText = camelCase(text);
final firstChar = camelCaseText.substring(0, 1).toLowerCase();
final rest = camelCaseText.substring(1);
return '$firstChar$rest';
}