border property

TableBorder? border

The style to use when painting the boundary and interior divisions of the table.

Implementation

TableBorder? get border => _border;
void border=(TableBorder? value)

Implementation

set border(TableBorder? value) {
  if (border == value) {
    return;
  }
  _border = value;
  markNeedsPaint();
}