Remove the first count bytes from this String. Returns empty String if count >= length.
count
String drop(int count) => substring(min(count, length));