mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:27:09 -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>
		
			
				
	
	
		
			14 lines
		
	
	
		
			271 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			271 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
sealed class MapEvent {
 | 
						|
  const MapEvent();
 | 
						|
}
 | 
						|
 | 
						|
class MapAssetsInBoundsUpdated extends MapEvent {
 | 
						|
  final List<String> assetRemoteIds;
 | 
						|
 | 
						|
  const MapAssetsInBoundsUpdated(this.assetRemoteIds);
 | 
						|
}
 | 
						|
 | 
						|
class MapCloseBottomSheet extends MapEvent {
 | 
						|
  const MapCloseBottomSheet();
 | 
						|
}
 |