ScanConfiguration.fast constructor

const ScanConfiguration.fast({
  1. int? timeoutSeconds = 60,
  2. bool enableRealtimeUpdates = false,
  3. bool detectFurniture = false,
  4. bool detectDoors = true,
  5. bool detectWindows = true,
  6. double minimumConfidence = 0.3,
  7. bool enableAdvancedSurfaceDetection = false,
})

Creates a configuration optimized for speed.

Implementation

const ScanConfiguration.fast({
  this.timeoutSeconds = 60,
  this.enableRealtimeUpdates = false,
  this.detectFurniture = false,
  this.detectDoors = true,
  this.detectWindows = true,
  this.minimumConfidence = 0.3,
  this.enableAdvancedSurfaceDetection = false,
}) : quality = ScanQuality.fast;