bottomBorder property

BorderSide bottomBorder

Implementation

BorderSide get bottomBorder => _bottomBorder;
void bottomBorder=(BorderSide value)

Implementation

set bottomBorder(BorderSide value) {
  if (bottomBorder != value) {
    _bottomBorder = value;
    markNeedsPaint();
  }
}