ComponentCircleButton constructor

const ComponentCircleButton({
  1. Key? key,
  2. Color? color,
  3. double? radius,
  4. required Widget icon,
  5. Function? onclick,
  6. bool isBoxShadow = false,
})

Implementation

const ComponentCircleButton({
  super.key,
  this.color,
  this.radius,
  required this.icon,
  this.onclick,
  this.isBoxShadow = false,
});