BorderSide constructor

const BorderSide({
  1. PdfColor color = PdfColors.black,
  2. double width = 1.0,
  3. BorderStyle style = BorderStyle.solid,
})

Creates the side of a border.

Implementation

const BorderSide({
  this.color = PdfColors.black,
  this.width = 1.0,
  this.style = BorderStyle.solid,
});