expandToInclude method
Implementation
LayoutRange expandToInclude(LayoutRange other) {
return LayoutRange(
min(start, other.start),
max(end, other.end),
);
}
LayoutRange expandToInclude(LayoutRange other) {
return LayoutRange(
min(start, other.start),
max(end, other.end),
);
}