ObjectStoragePutObjectResult constructor

ObjectStoragePutObjectResult({
  1. required String event,
  2. String? url,
  3. String? taskId,
  4. int? currentSize,
  5. int? totalSize,
  6. String? errorMessage,
  7. bool isFinished = false,
})

Implementation

ObjectStoragePutObjectResult({
  required this.event,
  this.url,
  this.taskId,
  this.currentSize,
  this.totalSize,
  this.errorMessage,
  this.isFinished = false,
});