CustomBackButton constructor

const CustomBackButton({
  1. Key? key,
  2. required VoidCallback onTap,
  3. Widget? icon,
  4. Color? iconColor,
})

Implementation

const CustomBackButton({
  super.key,
  required this.onTap,
  this.icon,
  this.iconColor,
});