MediaBuilderDetail constructor

MediaBuilderDetail({
  1. required String? id,
  2. required String? filePath,
  3. required String? fileType,
  4. String? createdAt,
  5. String? updatedAt,
  6. Map<String, String>? tags,
  7. Map<String, dynamic>? metadata,
  8. String? durationMilliseconds,
  9. String? remoteId,
  10. String? remoteURL,
  11. String? transcriptionURL,
  12. String? transcriptionLength,
  13. String? status,
  14. double? progress,
})

Implementation

MediaBuilderDetail({
  required this.id,
  required this.filePath,
  required this.fileType,
  this.createdAt,
  this.updatedAt,
  this.tags,
  this.metadata,
  this.durationMilliseconds,
  this.remoteId,
  this.remoteURL,
  this.transcriptionURL,
  this.transcriptionLength,
  this.status,
  this.progress,
});