FXBackButton constructor

const FXBackButton({
  1. Key? key,
  2. String testKey = '',
  3. required dynamic onTap(),
  4. bool showCircle = false,
  5. double? height,
  6. double? outerRadius,
  7. double? innerRadius,
  8. bool showBorder = false,
  9. Color borderColor = Colors.grey,
  10. bool showShadow = false,
  11. Widget? icon,
  12. Color? iconColor,
  13. double? iconCircleSize,
  14. double? iconSize,
})

Implementation

const FXBackButton({
  Key? key,
  this.testKey = '',
  required this.onTap,
  this.showCircle = false,
  this.height,
  this.outerRadius,
  this.innerRadius,
  this.showBorder = false,
  this.borderColor = Colors.grey,
  this.showShadow = false,
  this.icon,
  this.iconColor,
  this.iconCircleSize,
  this.iconSize,
}) : super(key: key);