2024-05-01 04:36:40 +02:00
|
|
|
import 'package:immich_mobile/entities/asset.entity.dart';
|
2023-12-07 20:14:09 +02:00
|
|
|
|
|
|
|
final class AssetStub {
|
|
|
|
const AssetStub._();
|
|
|
|
|
|
|
|
static final image1 = Asset(
|
|
|
|
checksum: "image1-checksum",
|
|
|
|
localId: "image1",
|
2024-01-05 07:20:55 +02:00
|
|
|
remoteId: 'image1-remote',
|
2023-12-07 20:14:09 +02:00
|
|
|
ownerId: 1,
|
|
|
|
fileCreatedAt: DateTime.now(),
|
|
|
|
fileModifiedAt: DateTime.now(),
|
|
|
|
updatedAt: DateTime.now(),
|
|
|
|
durationInSeconds: 0,
|
|
|
|
type: AssetType.image,
|
|
|
|
fileName: "image1.jpg",
|
|
|
|
isFavorite: true,
|
|
|
|
isArchived: false,
|
|
|
|
isTrashed: false,
|
|
|
|
);
|
|
|
|
|
|
|
|
static final image2 = Asset(
|
|
|
|
checksum: "image2-checksum",
|
|
|
|
localId: "image2",
|
2024-01-05 07:20:55 +02:00
|
|
|
remoteId: 'image2-remote',
|
2023-12-07 20:14:09 +02:00
|
|
|
ownerId: 1,
|
|
|
|
fileCreatedAt: DateTime(2000),
|
|
|
|
fileModifiedAt: DateTime(2010),
|
|
|
|
updatedAt: DateTime.now(),
|
|
|
|
durationInSeconds: 60,
|
|
|
|
type: AssetType.video,
|
|
|
|
fileName: "image2.jpg",
|
|
|
|
isFavorite: false,
|
|
|
|
isArchived: false,
|
|
|
|
isTrashed: false,
|
|
|
|
);
|
|
|
|
}
|