trimStart property

String get trimStart

trimStart: removes all leading whitespace from a string

Implementation

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