after method
Returns a substring containing characters after the specified point.
Implementation
Characters after(int point) {
return text.getRange(point);
}
Returns a substring containing characters after the specified point.
Characters after(int point) {
return text.getRange(point);
}