AnimatedNotificationBell constructor

const AnimatedNotificationBell({
  1. required Duration duration,
  2. required int notificationCount,
  3. required AnimatedNotificationBellStyle style,
  4. int iterations = 5,
  5. Key? key,
})

Implementation

const AnimatedNotificationBell({
  required this.duration,
  required this.notificationCount,
  required this.style,
  this.iterations = 5,
  super.key,
}) : assert(
        iterations > 0,
        'Iterations needs to be above 0',
      );