wrapPaddingSizeRight method

Size wrapPaddingSizeRight(
  1. Size innerSize
)

Implementation

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