It has been long time i am saving data to local storage through my application with Hive, but recently by mistake i have changed box name for a trial and later i forgot the actual name… so how to get all data after forgetting box name…is there any way to get names of box in hive
Future<void> main() async
{
// to hide system navbar SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.top]);
WidgetsFlutterBinding.ensureInitialized();
Directory dir=await getApplicationDocumentsDirectory();
await Hive.initFlutter(dir.path);
Hive.registerAdapter<CategoryModel>(CategoryModelAdapter());
Hive.registerAdapter<TransactionModel>(TransactionModelAdapter());
await Hive.openBox<TransactionModel>('sdfsdf');// i forgot the name of box
runApp(MyApp());
}