SyncLog constructor
const
SyncLog({
- required String syncId,
- required String entityType,
- required String entityId,
- required SyncOperation operation,
- required String dataJson,
- required bool isFileToUpload,
- required bool isSynced,
- required int retryCount,
- String? lastError,
- required DateTime createdAt,
- DateTime? lastAttemptAt,
- DateTime? syncedAt,
Implementation
const SyncLog({
required this.syncId,
required this.entityType,
required this.entityId,
required this.operation,
required this.dataJson,
required this.isFileToUpload,
required this.isSynced,
required this.retryCount,
this.lastError,
required this.createdAt,
this.lastAttemptAt,
this.syncedAt,
});