initialize method
Initializes the chat plugin with the backend domain and chatbot ID.
This must be called before sending messages.
Implementation
Future<void> initialize({
required String domain,
required String chatbotId,
}) async {
await ChatPluginPlatform.instance.initialize(
domain: domain,
chatbotId: chatbotId,
);
// _isInitialized = true;
}