PlaneWrapper constructor

PlaneWrapper({
  1. required Uint8List bytes,
  2. required int bytesPerRow,
  3. int? bytesPerPixel,
  4. int? width,
  5. int? height,
})

Implementation

PlaneWrapper({
  required this.bytes,
  required this.bytesPerRow,
  this.bytesPerPixel,
  this.width,
  this.height,
});