textAfter method Null safety
- String text
The text after this range.
Implementation
String textAfter(String text) {
assert(isNormalized);
return text.substring(end);
}
The text after this range.
String textAfter(String text) {
assert(isNormalized);
return text.substring(end);
}