mirror of
https://github.com/immich-app/immich.git
synced 2025-12-19 17:23:21 +03:00
deps: open-api generator (#6655)
* deps: open-api generator * fix: unused sed/replace
This commit is contained in:
@@ -20,7 +20,7 @@ class CheckExistingAssetsResponseDto {
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) => identical(this, other) || other is CheckExistingAssetsResponseDto &&
|
||||
other.existingIds == existingIds;
|
||||
_deepEquality.equals(other.existingIds, existingIds);
|
||||
|
||||
@override
|
||||
int get hashCode =>
|
||||
@@ -44,8 +44,8 @@ class CheckExistingAssetsResponseDto {
|
||||
final json = value.cast<String, dynamic>();
|
||||
|
||||
return CheckExistingAssetsResponseDto(
|
||||
existingIds: json[r'existingIds'] is List
|
||||
? (json[r'existingIds'] as List).cast<String>()
|
||||
existingIds: json[r'existingIds'] is Iterable
|
||||
? (json[r'existingIds'] as Iterable).cast<String>().toList(growable: false)
|
||||
: const [],
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user