getAllPackages method
Implementation
Future<List<PackageInfo>> getAllPackages() async {
if (!_isInitialized) throw Exception('PackageStorage not initialized');
return _box!.values.toList();
}
Future<List<PackageInfo>> getAllPackages() async {
if (!_isInitialized) throw Exception('PackageStorage not initialized');
return _box!.values.toList();
}