Bgra8888Image constructor

const Bgra8888Image(
  1. {required int height,
  2. required int width,
  3. required List<ImagePlane> planes,
  4. required InputAnalysisImageFormat format,
  5. required InputAnalysisImageRotation rotation}
)

Implementation

const Bgra8888Image({
  required super.height,
  required super.width,
  required this.planes,
  required super.format,
  required super.rotation,
});