skip method

String skip(
  1. int count
)

Returns the string suffix without the first count characters. If count is larger than length return the empty string.

Implementation

String skip(int count) => substring(min(count, length));