VxCircle constructor

VxCircle({
  1. Key? key,
  2. Widget? child,
  3. Color? backgroundColor,
  4. double? radius,
  5. BoxBorder? border,
  6. BoxDecoration? customDecoration,
  7. Gradient? gradient,
  8. DecorationImage? backgroundImage,
  9. BlendMode? blendMode,
  10. List<BoxShadow>? shadows,
})

Creates a circle that represents a shape.

Implementation

VxCircle({
  super.key,
  this.child,
  this.backgroundColor,
  this.radius,
  this.border,
  this.customDecoration,
  this.gradient,
  this.backgroundImage,
  this.blendMode,
  this.shadows,
}) {
  setChildForShadow(this);
}