getStorageInfo method
Gets detailed storage information including orphaned files
Implementation
@override
Future<StorageStats> getStorageInfo() async {
await _ensureInitialized();
// Web platform doesn't have file system access, return empty stats
return const StorageStats(
totalFiles: 0,
totalSizeBytes: 0,
orphanedFiles: [],
);
}