GenUiChatConfiguration constructor

const GenUiChatConfiguration({
  1. required String chatName,
  2. String? systemPrompt,
  3. String? headerTitle,
  4. String? avatarAssetPath,
  5. String? avatarUrl,
  6. double? messageSpacing,
  7. bool? autoScroll,
})

Implementation

const GenUiChatConfiguration({
  required this.chatName,
  this.systemPrompt,
  this.headerTitle,
  this.avatarAssetPath,
  this.avatarUrl,
  this.messageSpacing,
  this.autoScroll,
});