DeviceMigrationLogDTO constructor

const DeviceMigrationLogDTO({
  1. int? id,
  2. DeviceMigrationStatusDTO? status,
  3. bool? hasSentMigrateCommand,
  4. String? errorMessage,
  5. DateTime? migrationDate,
  6. DeviceDataDTO? device,
  7. DeviceMigrationRequestDTO? request,
  8. String? detailsSnapshot,
  9. String? eventsSnapshot,
  10. String? alertsSnapshot,
})

Implementation

const DeviceMigrationLogDTO({
  this.id,
  this.status,
  this.hasSentMigrateCommand,
  this.errorMessage,
  this.migrationDate,
  this.device,
  this.request,
  this.detailsSnapshot,
  this.eventsSnapshot,
  this.alertsSnapshot,
});