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