use adjustment time in iOS for hash reset

This commit is contained in:
shenlong-tanwen
2025-11-21 00:56:36 +05:30
parent 4f93eda8d8
commit 3ec8e5b253
12 changed files with 355 additions and 14 deletions

View File

@@ -27,6 +27,10 @@ class PlatformAsset {
final int orientation;
final bool isFavorite;
final int? adjustmentTime;
final double? latitude;
final double? longitude;
const PlatformAsset({
required this.id,
required this.name,
@@ -38,6 +42,9 @@ class PlatformAsset {
this.durationInSeconds = 0,
this.orientation = 0,
this.isFavorite = false,
this.adjustmentTime,
this.latitude,
this.longitude,
});
}