ZetaNotificationListItem constructor

const ZetaNotificationListItem({
  1. Key? key,
  2. bool? rounded,
  3. required ZetaNotificationBadge leading,
  4. required Widget body,
  5. required String title,
  6. bool notificationRead = false,
  7. String? notificationTime,
  8. required Widget action,
  9. bool? showDivider = false,
  10. String? semanticLabel,
})

Constructor for ZetaNotificationListItem

Implementation

const ZetaNotificationListItem({
  super.key,
  super.rounded,
  required this.leading,
  required this.body,
  required this.title,
  this.notificationRead = false,
  this.notificationTime,
  required this.action,
  this.showDivider = false,
  this.semanticLabel,
});