AIAssistBotView constructor

const AIAssistBotView({
  1. Key? key,
  2. User? user,
  3. Group? group,
  4. AIAssistBotStyle? assistBotStyle,
  5. String? title,
  6. String? errorIconUrl,
  7. CometChatTheme? theme,
  8. String? loadingStateText,
  9. String? loadingIconUrl,
  10. WidgetBuilder? loadingStateView,
  11. WidgetBuilder? errorStateView,
  12. WidgetBuilder? emptyStateView,
  13. String? emptyIconUrl,
  14. dynamic onCloseIconTap()?,
  15. required User aiBot,
  16. String? controllerTag,
  17. required User loggedInUser,
  18. Map<String, dynamic>? apiConfiguration,
})

Implementation

const AIAssistBotView(
    {super.key,
    this.user,
    this.group,
    this.assistBotStyle,
    this.title,
    this.errorIconUrl,
    this.theme,
    this.loadingStateText,
    this.loadingIconUrl,
    this.loadingStateView,
    this.errorStateView,
    this.emptyStateView,
    this.emptyIconUrl,
    this.onCloseIconTap,
    required this.aiBot,
    this.controllerTag,
    required this.loggedInUser,
    this.apiConfiguration});