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