ImagePlane constructor

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

Implementation

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