CircularIconButton constructor

const CircularIconButton({
  1. Key? key,
  2. double height = 40,
  3. double width = 40,
  4. required Widget icon,
  5. required VoidCallback onPressed,
  6. Color backgroundColor = Colors.transparent,
  7. Color borderColor = Colors.white,
})

Implementation

const CircularIconButton({
  super.key,
  this.height = 40,
  this.width = 40,
  required this.icon,
  required this.onPressed,
  this.backgroundColor = Colors.transparent,
  this.borderColor = Colors.white,
});