RelativeRect inflate(double delta)

Returns a new rectangle with edges moved outwards by the given delta.

Source

RelativeRect inflate(double delta) {
  return new RelativeRect.fromLTRB(left - delta, top - delta, right + delta, bottom + delta);
}