BadgeWraper constructor

const BadgeWraper({
  1. Key? key,
  2. Widget? child,
  3. Color? bageColor = Colors.red,
  4. bool? showBadge = false,
  5. int? badgeCount,
})

Implementation

const BadgeWraper({
  Key? key,
  this.child,
  this.bageColor = Colors.red,
  this.showBadge = false,
  this.badgeCount,
}) : super(key: key);