NiceChatList constructor
const
NiceChatList({
- Key? key,
- required List<
NiceChatConversation> conversations, - void onConversationTap(
- NiceChatConversation conversation
- void onConversationLongPress(
- NiceChatConversation conversation
- Widget? emptyWidget,
- EdgeInsetsGeometry? padding,
- Widget itemBuilder()?,
Implementation
const NiceChatList({
super.key,
required this.conversations,
this.onConversationTap,
this.onConversationLongPress,
this.emptyWidget,
this.padding,
this.itemBuilder,
});