expandSize method

Size expandSize(
  1. Size inner
)

Expands a Size by this margin.

Implementation

Size expandSize(Size inner) {
  return Size(
    inner.width + horizontal,
    inner.height + vertical,
  );
}