getAllPackages method

Future<List<PackageInfo>> getAllPackages()

Implementation

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