CameraFrame constructor

const CameraFrame({
  1. required Uint8List bytes,
  2. required int width,
  3. required int height,
  4. String format = 'bgra',
})

Implementation

const CameraFrame({
  required this.bytes,
  required this.width,
  required this.height,
  this.format = 'bgra',
});