CameraFrameConfig constructor

CameraFrameConfig({
  1. bool show = true,
  2. int? lineWidth,
  3. Color? borderColor,
  4. double? cornerRadius,
  5. double? aspectRatio,
  6. double? portraitAspectRatio,
  7. double? landscapeAspectRatio,
  8. int? offsetWidth,
  9. int? borderWidth,
})

Implementation

CameraFrameConfig({
  this.show = true,
  this.lineWidth,
  this.borderColor,
  this.cornerRadius,
  this.aspectRatio,
  this.portraitAspectRatio,
  this.landscapeAspectRatio,
  this.offsetWidth,
  this.borderWidth,
});