textInside method Null safety
- String text
The text inside this range.
Implementation
String textInside(String text) {
assert(isNormalized);
return text.substring(start, end);
}
The text inside this range.
String textInside(String text) {
assert(isNormalized);
return text.substring(start, end);
}