WxBorderSide constructor

const WxBorderSide({
  1. WxBorderStyle? style,
  2. Color? color,
  3. Gradient? gradient,
  4. double? width,
  5. double? offset,
})

Creates a new WxBorderSide object.

By default, the border is 1.0 logical pixels wide and solid black.

Implementation

const WxBorderSide({
  this.style,
  this.color,
  this.gradient,
  this.width,
  this.offset,
});