trimChars method

String trimChars(
  1. String chars
)

Removes the given chars from both ends of the string.

Implementation

String trimChars(String chars) => trim(this, chars);