ChatPage constructor
ChatPage({
- Key? key,
- required String sessionId,
- required NIMSessionType sessionType,
- NIMMessage? anchor,
- PopMenuAction? customPopActions,
- bool onTapAvatar(})?,
- ChatUIConfig? chatUIConfig,
- ChatKitMessageBuilder? messageBuilder,
- bool onMessageItemClick(
- ChatMessage message
- bool onMessageItemLongClick(
- ChatMessage message
Implementation
ChatPage(
{Key? key,
required this.sessionId,
required this.sessionType,
this.anchor,
this.customPopActions,
this.onTapAvatar,
this.chatUIConfig,
this.messageBuilder,
this.onMessageItemClick,
this.onMessageItemLongClick})
: super(key: key);