substringAfter method

String substringAfter(
  1. String separator
)

Implementation

String substringAfter(String separator) =>
    substring(indexOf(separator) + separator.length);