contentBoxHeight property

  1. @override
double? contentBoxHeight
override

Implementation

@override
double? get contentBoxHeight {
  if (paddingBoxHeight == null) {
    return null;
  }
  return paddingBoxHeight! - paddingTop.computedValue - paddingBottom.computedValue;
}