mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-30 18:22:37 -04:00 
			
		
		
		
	* chore: bump dart sdk to 3.8 * chore: make build * make pigeon * chore: format files --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:openapi/api.dart';
 | |
| 
 | |
| class ServerConfig {
 | |
|   final int trashDays;
 | |
|   final String oauthButtonText;
 | |
|   final String externalDomain;
 | |
|   final String mapDarkStyleUrl;
 | |
|   final String mapLightStyleUrl;
 | |
| 
 | |
|   const ServerConfig({
 | |
|     required this.trashDays,
 | |
|     required this.oauthButtonText,
 | |
|     required this.externalDomain,
 | |
|     required this.mapDarkStyleUrl,
 | |
|     required this.mapLightStyleUrl,
 | |
|   });
 | |
| 
 | |
|   ServerConfig copyWith({int? trashDays, String? oauthButtonText, String? externalDomain}) {
 | |
|     return ServerConfig(
 | |
|       trashDays: trashDays ?? this.trashDays,
 | |
|       oauthButtonText: oauthButtonText ?? this.oauthButtonText,
 | |
|       externalDomain: externalDomain ?? this.externalDomain,
 | |
|       mapDarkStyleUrl: mapDarkStyleUrl,
 | |
|       mapLightStyleUrl: mapLightStyleUrl,
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   String toString() =>
 | |
|       'ServerConfig(trashDays: $trashDays, oauthButtonText: $oauthButtonText, externalDomain: $externalDomain)';
 | |
| 
 | |
|   ServerConfig.fromDto(ServerConfigDto dto)
 | |
|     : trashDays = dto.trashDays,
 | |
|       oauthButtonText = dto.oauthButtonText,
 | |
|       externalDomain = dto.externalDomain,
 | |
|       mapDarkStyleUrl = dto.mapDarkStyleUrl,
 | |
|       mapLightStyleUrl = dto.mapLightStyleUrl;
 | |
| 
 | |
|   @override
 | |
|   bool operator ==(covariant ServerConfig other) {
 | |
|     if (identical(this, other)) return true;
 | |
| 
 | |
|     return other.trashDays == trashDays &&
 | |
|         other.oauthButtonText == oauthButtonText &&
 | |
|         other.externalDomain == externalDomain;
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   int get hashCode => trashDays.hashCode ^ oauthButtonText.hashCode ^ externalDomain.hashCode;
 | |
| }
 |