getOrphanedFiles method

  1. @override
Future<List<OrphanedFileInfo>> getOrphanedFiles()
override

Gets list of orphaned files (files without active downloads)

Implementation

@override
Future<List<OrphanedFileInfo>> getOrphanedFiles() async {
  await _ensureInitialized();
  // Web platform doesn't have file system access, no orphaned files
  return [];
}