Returns the substring after the first occurrence of pattern.
pattern
String after(String pattern) { if (isEmpty) return ''; final i = indexOf(pattern); return i == -1 ? '' : substring(i + pattern.length); }