saveConversation method
Implementation
@override
Future<void> saveConversation(ChatwootConversation conversation) async {
await _clientInstanceIdToConversationIdentifierBox.put(
_clientInstanceKey, conversation.id.toString());
await _box.put(conversation.id, conversation);
}