NiceInbox constructor
const
NiceInbox({
- Key? key,
- required List<
NiceInboxItem> items, - void onItemTap(
- NiceInboxItem item
- void onItemDismiss(
- NiceInboxItem item
- bool showUnreadIndicator = true,
- bool allowDismiss = true,
- Widget? emptyWidget,
Implementation
const NiceInbox({
super.key,
required this.items,
this.onItemTap,
this.onItemDismiss,
this.showUnreadIndicator = true,
this.allowDismiss = true,
this.emptyWidget,
});