conversationBoxProvider top-level property
Provides hive box for ChatwootConversation object, which is used when persistence is enabled
Implementation
final conversationBoxProvider = Provider<Box<ChatwootConversation>>((ref) {
return Hive.box<ChatwootConversation>(
ChatwootConversationBoxNames.CONVERSATIONS.toString());
});