UiRect constructor
Creates a new UiRect from the given coordinates.
Implementation
UiRect(double left, double top, double right, double bottom)
: assert(bottom >= top),
assert(right >= left),
_rect = ui.Rect.fromLTRB(left, top, right, bottom);