WxRectangleBorder constructor

const WxRectangleBorder({
  1. WxBorderSide? side,
  2. Color? color,
  3. Gradient? gradient,
  4. double? offset,
  5. WxBorderStyle? style,
  6. double? width,
  7. BorderRadiusGeometry corners = BorderRadius.zero,
})

Creates a rectangle border.

The arguments must not be null.

Implementation

const WxRectangleBorder({
  super.side,
  super.color,
  super.gradient,
  super.offset,
  super.style,
  super.width,
  this.corners = BorderRadius.zero,
});