CameraApp constructor

const CameraApp({
  1. Key? key,
  2. bool isMultiple = false,
  3. bool isSimpleUI = true,
  4. int? compressedSize,
  5. int? compressionQuality = 100,
})

Implementation

const CameraApp(
    {Key? key,
    this.isMultiple = false,
    this.isSimpleUI = true,
    this.compressedSize,
    this.compressionQuality = 100})
    : super(key: key);