AnimatedNotificationBellStyle constructor

const AnimatedNotificationBellStyle({
  1. double notificationIconSize = 50,
  2. Color bellColor = Colors.black,
  3. Color amountCircleColor = Colors.red,
  4. double amountCircleSize = 25,
  5. TextStyle amountCircleTextStyle = const TextStyle(color: Colors.white, fontSize: 14, fontWeight: FontWeight.w700),
})

Implementation

const AnimatedNotificationBellStyle({
  this.notificationIconSize = 50,
  this.bellColor = Colors.black,
  this.amountCircleColor = Colors.red,
  this.amountCircleSize = 25,
  this.amountCircleTextStyle = const TextStyle(
    color: Colors.white,
    fontSize: 14,
    fontWeight: FontWeight.w700,
  ),
});