ltrimChars method

String ltrimChars(
  1. String chars
)

Removes the given chars from the start of the string.

Implementation

String ltrimChars(String chars) => ltrim(this, chars);