lowerCaseFirst method

String? lowerCaseFirst()

Deixa a primeira letra da palavra em minusculo, e o restantante como estava

Implementation

String? lowerCaseFirst() {
  if (this != null) {
    if (this!.length > 1) {
      return this!.substring(0, 1).toLowerCase() + this!.substring(1);
    } else
      return this!.toLowerCase();
  } else
    return this;
}