BaseIconButton constructor

const BaseIconButton({
  1. Key? key,
  2. required Widget icon,
  3. required dynamic onPressed(),
  4. bool isCircle = true,
  5. bool withText = false,
  6. Color backgroundColor = const Color(0x99131313),
})

Implementation

const BaseIconButton({
  super.key,
  required this.icon,
  required this.onPressed,
  this.isCircle = true,
  this.withText = false,
  this.backgroundColor = const Color(0x99131313),
});