ChatView constructor

const ChatView({
  1. required ChatController controller,
  2. ValueChanged<Citation>? onCitationTap,
  3. VoidCallback? onStartNewConversation,
  4. SendOptions? sendOptions,
  5. ValueChanged<String>? onSend,
  6. Widget? composerLeading,
  7. Widget? composerHeader,
  8. Key? key,
})

Creates the view.

Implementation

const ChatView({
  required this.controller,
  this.onCitationTap,
  this.onStartNewConversation,
  this.sendOptions,
  this.onSend,
  this.composerLeading,
  this.composerHeader,
  super.key,
});