NERtcVideoFrame constructor

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

Implementation

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