borderBottomWidth property
Implementation
@override
CSSLengthValue? get borderBottomWidth => _borderBottomWidth;
set
borderBottomWidth
(CSSLengthValue? value)
Implementation
set borderBottomWidth(CSSLengthValue? value) {
if (value == _borderBottomWidth) return;
_borderBottomWidth = value;
renderBoxModel?.markNeedsLayout();
}