toLower property
String
get
toLower
toLower: converts all characters to lowercase
Implementation
String get toLower {
return this?.toLowerCase() ?? "";
}
toLower: converts all characters to lowercase
String get toLower {
return this?.toLowerCase() ?? "";
}