ConversationsViewItemLongPressHandler typedef

ConversationsViewItemLongPressHandler = List<ChatUIKitEventAction>? Function(BuildContext context, ConversationItemModel model, List<ChatUIKitEventAction> defaultActions)

用户会话列表长按事件,会返回默认的列表,需要你调整后返回来,返回来的数据会用于 bottom sheet 显示。

Implementation

typedef ConversationsViewItemLongPressHandler = List<ChatUIKitEventAction>?
    Function(
  BuildContext context,
  ConversationItemModel model,
  List<ChatUIKitEventAction> defaultActions,
);