AIAssistBotController constructor

AIAssistBotController({
  1. OnError? onError,
  2. User? user,
  3. Group? group,
  4. required User aiBot,
  5. Map<String, dynamic>? apiConfiguration,
})

Implementation

AIAssistBotController(
    {OnError? onError,
    this.user,
    this.group,
    required this.aiBot,
    this.apiConfiguration})
    : super(null, onError: onError);