UCameraFrame constructor

const UCameraFrame({
  1. required List<Uint8List> planes,
  2. required UFrameFormat format,
  3. required int width,
  4. required int height,
  5. List<int> rowStrides = const <int>[],
  6. List<int> pixelStrides = const <int>[],
  7. int rotation = 0,
  8. bool mirrored = false,
  9. int timestampUs = 0,
})

Implementation

const UCameraFrame({
  required this.planes,
  required this.format,
  required this.width,
  required this.height,
  this.rowStrides = const <int>[],
  this.pixelStrides = const <int>[],
  this.rotation = 0,
  this.mirrored = false,
  this.timestampUs = 0,
});