IosBluetoothOptions constructor

const IosBluetoothOptions({
  1. String? restoreIdentifier,
  2. int? scanTimeoutMs,
  3. bool allowDuplicates = false,
  4. bool autoReconnect = true,
  5. Map<String, Object> filters = const <String, Object>{},
})

Creates iOS BLE customization options.

Implementation

const IosBluetoothOptions({
  this.restoreIdentifier,
  this.scanTimeoutMs,
  this.allowDuplicates = false,
  this.autoReconnect = true,
  this.filters = const <String, Object>{},
});