MiniBackButton constructor

const MiniBackButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. Color? color,
  4. double? size,
  5. double? iconSize,
  6. Widget? icon,
})

Implementation

const MiniBackButton({
  super.key,
  this.onPressed,
  this.color,
  this.size,
  this.iconSize,
  this.icon,
});