borderRightWidth property

  1. @override
CSSLengthValue? borderRightWidth
override

Implementation

@override
CSSLengthValue? get borderRightWidth => _borderRightWidth;
void borderRightWidth=(CSSLengthValue? value)

Implementation

set borderRightWidth(CSSLengthValue? value) {
  if (value == _borderRightWidth) return;
  _borderRightWidth = value;
  renderBoxModel?.markNeedsLayout();
}