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