contentBoxWidth property

  1. @override
double? contentBoxWidth
override

Implementation

@override
double? get contentBoxWidth {
  if (paddingBoxWidth == null) {
    return null;
  }
  return paddingBoxWidth!
    - paddingLeft.computedValue
    - paddingRight.computedValue;
}