toLower property
String
get
toLower
Return string with all letters in lower case
Implementation
String get toLower {
if (isEmpty) {
return this;
}
return this.toLowerCase();
}
Return string with all letters in lower case
String get toLower {
if (isEmpty) {
return this;
}
return this.toLowerCase();
}