Content constructor

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

Implementation

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