containsRange method
Returns true if this range completely contains other.
Implementation
bool containsRange(LayoutRange other) {
return other.start >= start && other.end <= end;
}
Returns true if this range completely contains other.
bool containsRange(LayoutRange other) {
return other.start >= start && other.end <= end;
}