borderBottomColor property
Implementation
@override
CSSColor get borderBottomColor => _borderBottomColor ?? currentColor;
      
      set
      borderBottomColor
      (CSSColor? value) 
      
    
    
    
Implementation
set borderBottomColor(CSSColor? value) {
  if (value == _borderBottomColor) return;
  _borderBottomColor = value;
  renderBoxModel?.markNeedsPaint();
}