Size inflateSize(Size size)

Returns a new size that is bigger than the given size by the amount of inset in the horizontal and vertical directions.

See also:

Source

Size inflateSize(Size size) {
  return new Size(size.width + horizontal, size.height + vertical);
}