GunAction constructor

const GunAction({
  1. Key? key,
  2. int? badge,
  3. Widget? child,
  4. VoidCallback? onTap,
  5. double? sizeFactor,
})

Implementation

const GunAction({
  Key? key,
  this.badge,
  this.child,
  this.onTap,
  this.sizeFactor,
}) : super(key: key);