Returns a new rectangle with edges moved outwards by the given delta.
Rect inflatexy(double deltaX, double deltaY) { return Rect.fromLTRB( left - deltaX, top - deltaY, right + deltaX, bottom + deltaY); }