CustomBackButton constructor

const CustomBackButton({
  1. Key? key,
  2. Widget? leading,
  3. dynamic onBackTap()?,
  4. Color? backbuttonColor,
})

Implementation

const CustomBackButton({
  Key? key,
  this.leading,
  this.onBackTap,
  this.backbuttonColor,
}) : super(key: key);