toCamelCase method

String toCamelCase()

Implementation

String toCamelCase() {
  return this[0].toLowerCase() + substring(1);
}