NiceInbox constructor

const NiceInbox({
  1. Key? key,
  2. required List<NiceInboxItem> items,
  3. void onItemTap(
    1. NiceInboxItem item
    )?,
  4. void onItemDismiss(
    1. NiceInboxItem item
    )?,
  5. bool showUnreadIndicator = true,
  6. bool allowDismiss = true,
  7. Widget? emptyWidget,
})

Implementation

const NiceInbox({
  super.key,
  required this.items,
  this.onItemTap,
  this.onItemDismiss,
  this.showUnreadIndicator = true,
  this.allowDismiss = true,
  this.emptyWidget,
});