lowerFirst property

String? lowerFirst

Implementation

String? get lowerFirst {
  String? result;
  if (isNotEmpty) {
    result = this[0].toLowerCase();
    if (length > 1) {
      result += substring(1);
    }
  }
  return result;
}