wrapPaddingBorderWidth method

double wrapPaddingBorderWidth(
  1. double contentBoxWidth
)

Implementation

double wrapPaddingBorderWidth(double contentBoxWidth) {
  return contentBoxWidth
    + paddingLeft.computedValue
    + paddingRight.computedValue
    + border.left
    + border.right;
}