toLower property

String get toLower

Return string with all letters in lower case

Implementation

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