WxLinearBorder constructor

const WxLinearBorder({
  1. WxBorderSide? side,
  2. WxLinearBorderSide? start,
  3. WxLinearBorderSide? end,
  4. WxLinearBorderSide? top,
  5. WxLinearBorderSide? bottom,
})

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

Implementation

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