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