mirror of
https://github.com/immich-app/immich.git
synced 2025-08-07 09:04:09 -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>
19 lines
557 B
Dart
19 lines
557 B
Dart
import 'package:collection/collection.dart';
|
|
import 'package:immich_mobile/entities/asset.entity.dart';
|
|
|
|
class AssetSelectionPageResult {
|
|
final Set<Asset> selectedAssets;
|
|
|
|
const AssetSelectionPageResult({required this.selectedAssets});
|
|
@override
|
|
bool operator ==(Object other) {
|
|
if (identical(this, other)) return true;
|
|
final setEquals = const DeepCollectionEquality().equals;
|
|
|
|
return other is AssetSelectionPageResult && setEquals(other.selectedAssets, selectedAssets);
|
|
}
|
|
|
|
@override
|
|
int get hashCode => selectedAssets.hashCode;
|
|
}
|