UMediaCreateParams constructor

UMediaCreateParams({
  1. required File file,
  2. required List<int>? tags,
  3. String? userId,
  4. String? contentId,
  5. String? commentId,
  6. String? categoryId,
  7. String? productId,
  8. String? title,
  9. String? description,
})

Implementation

UMediaCreateParams({
  required this.file,
  required this.tags,
  this.userId,
  this.contentId,
  this.commentId,
  this.categoryId,
  this.productId,
  this.title,
  this.description,
});