NiceNotificationBell constructor

const NiceNotificationBell({
  1. Key? key,
  2. int unreadCount = 0,
  3. VoidCallback? onTap,
  4. Color? iconColor,
  5. Color? badgeColor,
  6. double iconSize = 24,
  7. bool animate = true,
})

Implementation

const NiceNotificationBell({
  super.key,
  this.unreadCount = 0,
  this.onTap,
  this.iconColor,
  this.badgeColor,
  this.iconSize = 24,
  this.animate = true,
});