ScanSettings constructor

ScanSettings({
  1. ScanMode? scanMode,
  2. int? reportDelayMillis,
  3. bool? allowDuplicates,
  4. bool? legacyMode,
})

Constructs a ScanSettings instance with the specified scan settings.

Implementation

ScanSettings({
  this.scanMode,
  this.reportDelayMillis,
  this.allowDuplicates,
  this.legacyMode,
});