InputImagePlaneMetadata constructor

InputImagePlaneMetadata({
  1. required int bytesPerRow,
  2. int? height,
  3. int? width,
})

Implementation

InputImagePlaneMetadata({
  required this.bytesPerRow,
  this.height,
  this.width,
});