mirror of
https://github.com/immich-app/immich.git
synced 2025-08-11 09:16:31 -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>
39 lines
1.3 KiB
Dart
39 lines
1.3 KiB
Dart
// ignore_for_file: public_member_api_docs, sort_constructors_first
|
|
import 'dart:convert';
|
|
|
|
import 'package:collection/collection.dart';
|
|
|
|
class AlbumAddAssetsResponse {
|
|
List<String> alreadyInAlbum;
|
|
int successfullyAdded;
|
|
|
|
AlbumAddAssetsResponse({required this.alreadyInAlbum, required this.successfullyAdded});
|
|
|
|
AlbumAddAssetsResponse copyWith({List<String>? alreadyInAlbum, int? successfullyAdded}) {
|
|
return AlbumAddAssetsResponse(
|
|
alreadyInAlbum: alreadyInAlbum ?? this.alreadyInAlbum,
|
|
successfullyAdded: successfullyAdded ?? this.successfullyAdded,
|
|
);
|
|
}
|
|
|
|
Map<String, dynamic> toMap() {
|
|
return <String, dynamic>{'alreadyInAlbum': alreadyInAlbum, 'successfullyAdded': successfullyAdded};
|
|
}
|
|
|
|
String toJson() => json.encode(toMap());
|
|
|
|
@override
|
|
String toString() => 'AddAssetsResponse(alreadyInAlbum: $alreadyInAlbum, successfullyAdded: $successfullyAdded)';
|
|
|
|
@override
|
|
bool operator ==(covariant AlbumAddAssetsResponse other) {
|
|
if (identical(this, other)) return true;
|
|
final listEquals = const DeepCollectionEquality().equals;
|
|
|
|
return listEquals(other.alreadyInAlbum, alreadyInAlbum) && other.successfullyAdded == successfullyAdded;
|
|
}
|
|
|
|
@override
|
|
int get hashCode => alreadyInAlbum.hashCode ^ successfullyAdded.hashCode;
|
|
}
|