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