ZetaNotificationBadge.image constructor

const ZetaNotificationBadge.image(
  1. {Key? key,
  2. required Image? image}
)

Constructs a notification badge with an image.

Implementation

const ZetaNotificationBadge.image({
  super.key,
  required this.image,
})  : icon = null,
      iconColor = null,
      avatar = null;