Content constructor

Content({
  1. String? url,
  2. String? type,
  3. int? fileSize,
  4. String? medium,
  5. bool? isDefault,
  6. String? expression,
  7. int? bitrate,
  8. double? framerate,
  9. double? samplingrate,
  10. int? channels,
  11. int? duration,
  12. int? height,
  13. int? width,
  14. String? lang,
})

Implementation

Content({
  this.url,
  this.type,
  this.fileSize,
  this.medium,
  this.isDefault,
  this.expression,
  this.bitrate,
  this.framerate,
  this.samplingrate,
  this.channels,
  this.duration,
  this.height,
  this.width,
  this.lang,
});