openDB static method

Future<void> openDB()

Implementation

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