LinearBorder constructor

const LinearBorder({
  1. BorderSide side = BorderSide.none,
  2. LinearBorderEdge? start,
  3. LinearBorderEdge? end,
  4. LinearBorderEdge? top,
  5. LinearBorderEdge? bottom,
})

Creates a rectangular box border that's rendered as zero to four lines.

Implementation

const LinearBorder({
  super.side,
  this.start,
  this.end,
  this.top,
  this.bottom,
});