VideoFrame constructor

VideoFrame({
  1. int? width,
  2. int? height,
  3. int? rotation,
  4. int? format,
  5. int? timeStamp,
  6. Uint8List? data,
  7. int? strideY,
  8. int? strideU,
  9. int? strideV,
  10. int? textureId,
  11. List<double?>? transformMatrix,
})

Implementation

VideoFrame({
  this.width,
  this.height,
  this.rotation,
  this.format,
  this.timeStamp,
  this.data,
  this.strideY,
  this.strideU,
  this.strideV,
  this.textureId,
  this.transformMatrix,
});