TableBorder border

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

Source

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

Source

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