CustomCloseButton constructor

const CustomCloseButton({
  1. Key? key,
  2. Widget? leading,
  3. dynamic onCloseTap()?,
  4. Color? closeButtonColor,
})

Implementation

const CustomCloseButton({
  Key? key,
  this.leading,
  this.onCloseTap,
  this.closeButtonColor,
}) : super(key: key);