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