borderBoxLogicalHeight property

  1. @override
double? borderBoxLogicalHeight
override

Implementation

@override
double? get borderBoxLogicalHeight {
  if (paddingBoxLogicalHeight == null) {
    return null;
  }
  return paddingBoxLogicalHeight!
    + effectiveBorderTopWidth.computedValue
    + effectiveBorderBottomWidth.computedValue;
}