IconWithBadge constructor

const IconWithBadge({
  1. Key? key,
  2. IconData? icon,
  3. int? badgeCount,
  4. double iconSize = 24.0,
  5. Color? iconColor,
  6. Color? badgeColor,
  7. Color? badgeLabelColor,
  8. TextStyle? badgeLabelStyle,
})

Implementation

const IconWithBadge({
  super.key,
  this.icon,
  this.badgeCount,
  this.iconSize = 24.0,
  this.iconColor,
  this.badgeColor,
  this.badgeLabelColor,
  this.badgeLabelStyle,
});