trimStart method

String trimStart(
  1. dynamic characters, {
  2. bool trimWhitespace = true,
})

Implementation

String trimStart(dynamic characters, {bool trimWhitespace = true}) =>
    trimAround(characters, trimWhitespace: trimWhitespace, trimEnd: false);