CameraView constructor

CameraView({
  1. bool enabled = true,
  2. double fullWidth = 1,
  3. double fullHeight = 1,
  4. double offsetX = 0,
  5. double offsetY = 0,
  6. double width = 1,
  7. double height = 1,
})

Implementation

CameraView({
  this.enabled = true,
  this.fullWidth = 1,
  this.fullHeight = 1,
  this.offsetX = 0,
  this.offsetY = 0,
  this.width = 1,
  this.height = 1,
});