WxStadiumBorder constructor

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

Create a stadium border.

The side argument must not be null.

Implementation

const WxStadiumBorder({
  super.side,
  super.color,
  super.gradient,
  super.offset,
  super.style,
  super.width,
});