doubleBorder static method
Creates a table with double borders.
Implementation
static Table doubleBorder(List<String> headers, List<List<Object?>> rows) {
return Table()
..headers(headers)
..rows(rows)
..border(style_border.Border.double);
}