Returns a new rectangle which is the bounding box containing this rectangle and the given rectangle.
Source
Rect expandToInclude(Rect other) { return new Rect.fromLTRB( math.min(left, other.left), math.min(top, other.top), math.max(right, other.right), math.max(bottom, other.bottom), ); }