VideoFrame constructor

VideoFrame({
  1. List<int> data = const [],
  2. int frameNumber = 0,
  3. bool isKey = false,
  4. int timestampInUs = 0,
  5. int durationInUs = 0,
})

Implementation

VideoFrame({
    this.data = const [],
    this.frameNumber = 0,
    this.isKey = false,
    this.timestampInUs = 0,
    this.durationInUs = 0,
});