trimStart property
String
get
trimStart
trimStart: removes all leading whitespace from a string
Implementation
String get trimStart {
return this?.trimLeft() ?? "";
}
trimStart: removes all leading whitespace from a string
String get trimStart {
return this?.trimLeft() ?? "";
}