String textAfter(String text)

The text after this range.

Source

String textAfter(String text) {
  assert(isNormalized);
  return text.substring(end);
}