initialize method

Future<void> initialize({
  1. required String domain,
  2. required String chatbotId,
})

Initializes the chat plugin with the necessary configuration.

Must be called before streamResponse.

Implementation

Future<void> initialize({
  required String domain,
  required String chatbotId,
}) {
  throw UnimplementedError('initialize() has not been implemented.');
}