WxBorder constructor

const WxBorder({
  1. Key? key,
  2. bool isBackground = false,
  3. Clip clipBehavior = Clip.none,
  4. TextDirection? textDirection,
  5. required ShapeBorder shape,
  6. Widget? child,
})

Creates a new WxBorder widget.

shape is required.

Implementation

const WxBorder({
  super.key,
  this.isBackground = false,
  this.clipBehavior = Clip.none,
  this.textDirection,
  required this.shape,
  this.child,
});