VxBevel constructor

VxBevel({
  1. Key? key,
  2. Widget? child,
  3. Color? backgroundColor,
  4. double? radius,
  5. double? width,
  6. double? height,
  7. BorderSide? borderSide,
  8. Gradient? gradient,
  9. DecorationImage? backgroundImage,
  10. List<BoxShadow>? shadows,
})

Creates a bevel that represents a shape.

Implementation

VxBevel({
  super.key,
  this.child,
  this.backgroundColor,
  this.radius,
  this.width,
  this.height,
  this.borderSide,
  this.gradient,
  this.backgroundImage,
  this.shadows,
}) {
  setChildForShadow(this);
}