CircleView constructor

const CircleView({
  1. Key? key,
  2. double? size,
  3. Color? color = Colors.transparent,
  4. List<BoxShadow>? boxShadow,
  5. Border? border,
  6. double? opacity,
  7. Image? buttonImage,
  8. Icon? buttonIcon,
  9. String? buttonText,
})

Implementation

const CircleView({
  super.key,
  this.size,
  this.color = Colors.transparent,
  this.boxShadow,
  this.border,
  this.opacity,
  this.buttonImage,
  this.buttonIcon,
  this.buttonText,
});