WxBorder constructor
const
WxBorder({
- Key? key,
- bool isBackground = false,
- Clip clipBehavior = Clip.none,
- TextDirection? textDirection,
- required ShapeBorder shape,
- 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,
});