toLowerCase property

String get toLowerCase

Return string with all letters in lower case

Implementation

String get toLowerCase {
  if (isEmpty) {
    return this;
  }
  return this.toLowerCase();
}