StreamUploadRequest constructor

StreamUploadRequest({
  1. required String id,
  2. String? title,
  3. String? status,
  4. String? type,
  5. double? progress,
  6. String? thumbnailPath,
  7. String? mediaId,
  8. Map<String, String>? tags,
  9. Map<String, dynamic>? metadata,
  10. bool? includeInReport,
  11. bool? isLibrary,
  12. bool? isStartOperationCompleted,
  13. String? startOperationStartedAt,
  14. String? startOperationEndedAt,
  15. bool? isCompleteOperationCompleted,
  16. String? completeOperationStartedAt,
  17. String? completeOperationEndedAt,
  18. List<StreamUploadRequestPart>? parts,
  19. String? createdAt,
  20. String? updatedAt,
  21. String? startedAt,
  22. String? endedAt,
})

Implementation

StreamUploadRequest({
  required this.id,
  this.title,
  this.status,
  this.type,
  this.progress,
  this.thumbnailPath,
  this.mediaId,
  this.tags,
  this.metadata,
  this.includeInReport,
  this.isLibrary,
  this.isStartOperationCompleted,
  this.startOperationStartedAt,
  this.startOperationEndedAt,
  this.isCompleteOperationCompleted,
  this.completeOperationStartedAt,
  this.completeOperationEndedAt,
  this.parts,
  this.createdAt,
  this.updatedAt,
  this.startedAt,
  this.endedAt,
});