TopicChatPage constructor

const TopicChatPage({
  1. Key? key,
  2. required String conversationId,
  3. required BotSubsessionTopicContext topicContext,
  4. ChatUIConfig? chatUIConfig,
  5. ChatKitMessageBuilder? messageBuilder,
  6. VoidCallback? onBackToList,
  7. ValueChanged<BotSubsessionTopicContext>? onTopicResolved,
})

Implementation

const TopicChatPage({
  Key? key,
  required this.conversationId,
  required this.topicContext,
  this.chatUIConfig,
  this.messageBuilder,
  this.onBackToList,
  this.onTopicResolved,
}) : super(key: key);