openDB static method

Future<void> openDB()

Implementation

static Future<void> openDB() async {
  await Hive.openBox<ChatwootContact>(
      ChatwootContactBoxNames.CONTACTS.toString());
  await Hive.openBox<String>(
      ChatwootContactBoxNames.CLIENT_INSTANCE_TO_CONTACTS.toString());
}