InputImage constructor

InputImage({
  1. String? path,
  2. Uint8List? bytes,
  3. required String type,
  4. InputImageData? metadata,
})

Implementation

InputImage({
  this.path,
  this.bytes,
  required this.type,
  this.metadata,
});