borderBottomWidth property

  1. @override
CSSLengthValue? borderBottomWidth
override

Implementation

@override
CSSLengthValue? get borderBottomWidth => _borderBottomWidth;
void borderBottomWidth=(CSSLengthValue? value)

Implementation

set borderBottomWidth(CSSLengthValue? value) {
  if (value == _borderBottomWidth) return;
  _borderBottomWidth = value;
  renderBoxModel?.markNeedsLayout();
}