MediaItem constructor

MediaItem({
  1. String? id,
  2. String? createdDate,
  3. String? remoteId,
  4. String? uploadedFileUrl,
  5. Map<String, String>? metaData,
  6. Map<String, String>? tags,
  7. String? transcriptionUrl,
  8. String? transcriptionLength,
  9. String? fileType,
  10. String? title,
  11. String? duration,
  12. bool? addedToLibrary,
})

Implementation

MediaItem({
  this.id,
  this.createdDate,
  this.remoteId,
  this.uploadedFileUrl,
  this.metaData,
  this.tags,
  this.transcriptionUrl,
  this.transcriptionLength,
  this.fileType,
  this.title,
  // this.thumbnailURL,
  // this.previewURL,
  this.duration,
  this.addedToLibrary,
});