mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:17:11 -05:00 
			
		
		
		
	* enable border radius, switch exp, const constructor * regenerate provider * more formatting --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
		
			
				
	
	
		
			6 lines
		
	
	
		
			192 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			192 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
/// An exception for the [ImageLoader] and the Immich image providers
 | 
						|
class ImageLoadingException implements Exception {
 | 
						|
  final String message;
 | 
						|
  const ImageLoadingException(this.message);
 | 
						|
}
 |