Drops the first n characters. Returns empty string if n >= length.
n
String dropLeft(int n) { if (n <= 0) return this; if (n >= length) return ''; return substring(n); }