I am having 2 adapters. I have registered both adapters in main method. I am having only 1 box because database is only one, inside that tables can be multiple.
So I am not able to open same box with different adapter in hive in flutter.
eg :
Hive.openBox<Adapter1>(box1);
Hive.openBox<Adapter2>(box1);
I want to do this stuff.