DocxCellBorders.all constructor

const DocxCellBorders.all({
  1. String color = '000000',
  2. int size = 4,
})

All borders with default style (single line, black).

Implementation

const DocxCellBorders.all({
  String color = '000000',
  int size = 4,
})  : top = const DocxBorder(),
      bottom = const DocxBorder(),
      left = const DocxBorder(),
      right = const DocxBorder();