UCapturedVideo constructor

const UCapturedVideo({
  1. required String path,
  2. required Duration duration,
  3. int width = 0,
  4. int height = 0,
  5. int sizeInBytes = 0,
  6. UVideoContainer container = UVideoContainer.mp4,
  7. Uint8List? bytes,
  8. Uint8List? thumbnail,
})

Implementation

const UCapturedVideo({
  required this.path,
  required this.duration,
  this.width = 0,
  this.height = 0,
  this.sizeInBytes = 0,
  this.container = UVideoContainer.mp4,
  this.bytes,
  this.thumbnail,
});