BottomBarIcon.withNotification constructor
BottomBarIcon.withNotification({})
Implementation
factory BottomBarIcon.withNotification({
required Icon icon,
required Text notificationLabel,
required Color notificationColor,
double? top,
double? right,
}) =>
BottomBarIcon(
icon: icon,
top: top,
right: right,
notificationLabel: notificationLabel,
notificationColor: notificationColor,
);