The style to use when painting the boundary and interior divisions of the table.
Source
TableBorder get border => _border;
Source
set border(TableBorder value) {
if (border == value)
return;
_border = value;
markNeedsPaint();
}
The style to use when painting the boundary and interior divisions of the table.
TableBorder get border => _border;
set border(TableBorder value) {
if (border == value)
return;
_border = value;
markNeedsPaint();
}