WxBox.stadium constructor
      const
      WxBox.stadium({ 
    
- Key? key,
- double? width,
- double? height,
- BoxConstraints? constraints,
- AlignmentGeometry? alignment,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- DecorationImage? image,
- List<BoxShadow> ? shadows,
- Gradient? gradient,
- Color? color,
- Color? borderColor,
- double? borderWidth,
- BorderStyle? borderStyle,
- double? borderOffset,
- BorderSide? borderSide,
- BorderRadius? borderRadius,
- Color? elevationColor,
- Clip? clipBehavior,
- double? elevation,
- Widget? child,
Create a box widget with stadium shape
Implementation
const WxBox.stadium({
  super.key,
  this.width,
  this.height,
  this.constraints,
  this.alignment,
  this.padding,
  this.margin,
  this.image,
  this.shadows,
  this.gradient,
  this.color,
  this.borderColor,
  this.borderWidth,
  this.borderStyle,
  this.borderOffset,
  this.borderSide,
  this.borderRadius,
  this.elevationColor,
  this.clipBehavior,
  this.elevation,
  this.child,
}) : border = const StadiumBorder();