ChatUI constructor

const ChatUI({
  1. Key? key,
  2. required ChatProvider chatProvider,
  3. ChatUser? user,
  4. ChatUser? assistant,
  5. ChatTheme? theme,
  6. Widget? header,
  7. bool showHeader = true,
  8. String? title,
  9. List<Widget>? actions,
})

Implementation

const ChatUI({
  super.key,
  required this.chatProvider,
  this.user,
  this.assistant,
  this.theme,
  this.header,
  this.showHeader = true,
  this.title,
  this.actions,
});