toLower property

String get toLower

toLower: converts all characters to lowercase

Implementation

String get toLower {
  return this?.toLowerCase() ?? "";
}