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