NotificationIcon constructor

const NotificationIcon({
  1. bool? notification = false,
  2. IconData? icon = BootstrapIcons.bell_fill,
  3. Color? iconColor = FUIColors.white,
  4. double? iconSize = 24,
  5. Color? notificationColor = FUIColors.yellow500,
  6. Color? backgroundColor = FUIColors.white,
  7. void onTap()?,
  8. Key? key,
})

Implementation

const NotificationIcon({
  this.notification = false,
  this.icon = BootstrapIcons.bell_fill,
  this.iconColor = FUIColors.white,
  this.iconSize = 24,
  this.notificationColor = FUIColors.yellow500,
  this.backgroundColor = FUIColors.white,
  this.onTap,
  super.key,
});