mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 02:27:08 -04:00 
			
		
		
		
	* refactor(mobile): entities * store entity * refactor: models * remove domain * save all * bad refactor
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| // ignore_for_file: public_member_api_docs, sort_constructors_first
 | |
| import 'dart:convert';
 | |
| 
 | |
| /// A wrapper for [CuratedLocationsResponseDto] objects
 | |
| /// and [CuratedObjectsResponseDto] to be displayed in
 | |
| /// a view
 | |
| class SearchCuratedContent {
 | |
|   /// The label to show associated with this curated object
 | |
|   final String label;
 | |
| 
 | |
|   /// The id to lookup the asset from the server
 | |
|   final String id;
 | |
| 
 | |
|   SearchCuratedContent({
 | |
|     required this.label,
 | |
|     required this.id,
 | |
|   });
 | |
| 
 | |
|   SearchCuratedContent copyWith({
 | |
|     String? label,
 | |
|     String? id,
 | |
|   }) {
 | |
|     return SearchCuratedContent(
 | |
|       label: label ?? this.label,
 | |
|       id: id ?? this.id,
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   Map<String, dynamic> toMap() {
 | |
|     return <String, dynamic>{
 | |
|       'label': label,
 | |
|       'id': id,
 | |
|     };
 | |
|   }
 | |
| 
 | |
|   factory SearchCuratedContent.fromMap(Map<String, dynamic> map) {
 | |
|     return SearchCuratedContent(
 | |
|       label: map['label'] as String,
 | |
|       id: map['id'] as String,
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   String toJson() => json.encode(toMap());
 | |
| 
 | |
|   factory SearchCuratedContent.fromJson(String source) =>
 | |
|       SearchCuratedContent.fromMap(json.decode(source) as Map<String, dynamic>);
 | |
| 
 | |
|   @override
 | |
|   String toString() => 'CuratedContent(label: $label, id: $id)';
 | |
| 
 | |
|   @override
 | |
|   bool operator ==(covariant SearchCuratedContent other) {
 | |
|     if (identical(this, other)) return true;
 | |
| 
 | |
|     return other.label == label && other.id == id;
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   int get hashCode => label.hashCode ^ id.hashCode;
 | |
| }
 |