toLowerCaseFirstLetter method

String toLowerCaseFirstLetter()

Implementation

String toLowerCaseFirstLetter() {
  if (this == null || this!.isEmpty) return '';
  return this![0].toLowerCase() + this!.substring(1);
}