firstToLowerCase method

String firstToLowerCase()

Implementation

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