trim property

String get trim

toTitleCase: converts the first character of each word to uppercase

Implementation

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