NiceImportExportJob constructor
const
NiceImportExportJob({ - required String id,
- required String type,
- required NiceDataFormat format,
- required NiceJobStatus status,
- String? fileName,
- int totalRows = 0,
- int processedRows = 0,
- int errorCount = 0,
- DateTime? createdAt,
- DateTime? completedAt,
- 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,
});