NiceImportExportJob constructor

const NiceImportExportJob({
  1. required String id,
  2. required String type,
  3. required NiceDataFormat format,
  4. required NiceJobStatus status,
  5. String? fileName,
  6. int totalRows = 0,
  7. int processedRows = 0,
  8. int errorCount = 0,
  9. DateTime? createdAt,
  10. DateTime? completedAt,
  11. String? errorMessage,
})

Implementation

const NiceImportExportJob({
  required this.id,
  required this.type,
  required this.format,
  required this.status,
  this.fileName,
  this.totalRows = 0,
  this.processedRows = 0,
  this.errorCount = 0,
  this.createdAt,
  this.completedAt,
  this.errorMessage,
});