wrapPaddingSize method

Size wrapPaddingSize(
  1. Size innerSize
)

Implementation

Size wrapPaddingSize(Size innerSize) {
  return Size(
    paddingLeft.computedValue + innerSize.width + paddingRight.computedValue,
    paddingTop.computedValue + innerSize.height + paddingBottom.computedValue
  );
}