MephistoCircleButton constructor

const MephistoCircleButton({
  1. Key? key,
  2. required Function onClick,
  3. bool? isDisabled = false,
  4. required Widget? icon,
  5. double? size = 35,
  6. Color? bgColor = primaryColor,
})

Implementation

const MephistoCircleButton(
    {super.key,
    required this.onClick,
    this.isDisabled = false,
    required this.icon,
    this.size = 35,
    this.bgColor = primaryColor});