doubleBorder static method

Table doubleBorder(
  1. List<String> headers,
  2. List<List<Object?>> rows
)

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);
}