VideoFrameMetadata constructor

VideoFrameMetadata({
  1. int? pts,
  2. int? dts,
  3. Duration? delay,
  4. int? size,
  5. ImageFormat? imageFormat,
  6. int? width,
  7. int? height,
})

Implementation

VideoFrameMetadata(
    {super.pts,
    super.dts,
    super.delay,
    super.size,
    this.imageFormat,
    this.width,
    this.height});