Convert this RelativeRect to a Rect, in the coordinate space of the container.
Rect toRect(Rect container) { return new Rect.fromLTRB(left, top, container.width - right, container.height - bottom); }