borderBottomColor property

  1. @override
Color borderBottomColor
override

Implementation

@override
Color get borderBottomColor => _borderBottomColor ?? currentColor;
void borderBottomColor=(Color? value)

Implementation

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