CloudSyncable constructor

const CloudSyncable({
  1. String? id,
  2. DateTime? createdAt,
  3. DateTime? updatedAt,
  4. DateTime? deletedAt,
  5. DateTime? localTimeSyncedAt,
  6. DateTime? serverTimeSyncedAt,
  7. String? localFilePath,
  8. String? remoteFilePath,
  9. DateTime? fileSyncedAt,
  10. String? timeOffset,
})

Implementation

const CloudSyncable({
  this.id,
  this.createdAt,
  this.updatedAt,
  this.deletedAt,
  this.localTimeSyncedAt,
  this.serverTimeSyncedAt,
  this.localFilePath,
  this.remoteFilePath,
  this.fileSyncedAt,
  this.timeOffset,
});