BottomBarIcon constructor

const BottomBarIcon({
  1. Key? key,
  2. required Icon icon,
  3. NotificationBuilder? notificationBuilder,
  4. double? top,
  5. double? right,
  6. Text? notificationLabel,
  7. Color? notificationColor,
})

Implementation

const BottomBarIcon({
  super.key,
  required this.icon,
  this.notificationBuilder,
  this.top,
  this.right,
  this.notificationLabel,
  this.notificationColor,
});