openDB static method
Implementation
static Future<void> openDB() async {
await Hive.openBox<SolevatoConversation>(
SolevatoConversationBoxNames.CONVERSATIONS.toString());
await Hive.openBox<String>(SolevatoConversationBoxNames
.CLIENT_INSTANCE_TO_CONVERSATIONS
.toString());
}