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. Widget? action,
  9. bool? showDivider = false,
  10. String? semanticLabel,
  11. Widget? attachment,
  12. bool? showBellIcon = false,
  13. List<ZetaSlidableAction> slidableActions = const [],
  14. bool? paleButtonColors,
})

Constructor for ZetaNotificationListItem

Implementation

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