mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			237 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			237 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
class ImageViewerPageData {
 | 
						|
  final String heroTag;
 | 
						|
  final String imageUrl;
 | 
						|
  final String thumbnailUrl;
 | 
						|
 | 
						|
  ImageViewerPageData({
 | 
						|
    required this.heroTag,
 | 
						|
    required this.imageUrl,
 | 
						|
    required this.thumbnailUrl,
 | 
						|
  });
 | 
						|
}
 |