toLowerCase method

String? toLowerCase()

Converts all characters in this string to lower case. If the string is already in all lower case, this method returns this.

Implementation

String? toLowerCase() {
  return value?.toLowerCase();
}