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