toVariableName method
Implementation
String toVariableName() {
if (isEmpty) {
return this;
}
return this[0].toLowerCase() + substring(1);
}
String toVariableName() {
if (isEmpty) {
return this;
}
return this[0].toLowerCase() + substring(1);
}