inflate method

Rect2D inflate(
  1. double r
)

Implementation

Rect2D inflate(double r) =>
    Rect2D.fromLTRB(left - r, top - r, right + r, bottom + r);