drop method

String drop(
  1. int count
)

Remove the first count bytes from this String. Returns empty String if count >= length.

Implementation

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