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