Include trashed items in getMediaChanges

Process trashed items delta during incremental sync
This commit is contained in:
Peter Ombodi 2025-09-19 17:55:20 +03:00
parent 5ddb6cd2e1
commit 55fe480cc1
9 changed files with 110 additions and 36 deletions

View file

@ -24,6 +24,7 @@ class PlatformAsset {
final int durationInSeconds;
final int orientation;
final bool isFavorite;
final bool isTrashed;
final int? size;
const PlatformAsset({
@ -37,6 +38,7 @@ class PlatformAsset {
this.durationInSeconds = 0,
this.orientation = 0,
this.isFavorite = false,
this.isTrashed = false,
this.size,
});
}