trimLeftLength method

String trimLeftLength(
  1. int length
)

The string trimmed from the left side by the given length.

Implementation

String trimLeftLength(int length) => substring(length);