ChunkUploadException constructor

ChunkUploadException(
  1. String message, {
  2. required String fileUuid,
  3. required String uploadKey,
  4. required int lastSuccessfulChunk,
  5. Set<int>? completedChunks,
  6. String? fileKey,
  7. Object? originalError,
})

Implementation

ChunkUploadException(
  this.message, {
  required this.fileUuid,
  required this.uploadKey,
  required this.lastSuccessfulChunk,
  Set<int>? completedChunks,
  this.fileKey,
  this.originalError,
}) : completedChunks = completedChunks ?? <int>{};