borderBottomColor property

  1. @override
CSSColor get borderBottomColor
override

Implementation

@override
CSSColor get borderBottomColor => _borderBottomColor ?? currentColor;
set borderBottomColor (CSSColor? value)

Implementation

set borderBottomColor(CSSColor? value) {
  if (value == _borderBottomColor) return;
  _borderBottomColor = value;
  renderBoxModel?.markNeedsPaint();
}