MephistoSquareIconButton constructor

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

Implementation

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