VideoData constructor

VideoData({
  1. String? localPath,
  2. String? url,
  3. String? snapshotLocalPath,
  4. String? snapshotUrl,
  5. int duration = 0,
  6. int width = 0,
  7. int height = 0,
})

Implementation

VideoData({
  this.localPath,
  this.url,
  this.snapshotLocalPath,
  this.snapshotUrl,
  this.duration = 0,
  this.width = 0,
  this.height = 0,
});