startScan method

Future<bool> startScan({
  1. List<String>? iBeaconUUIDs,
})

Start scanning for beacons

iBeaconUUIDs - Optional list of iBeacon UUIDs to scan for on iOS. iOS requires specific UUIDs to detect iBeacons via Core Location. On Android, this parameter is ignored as BLE scanning detects all beacons.

Implementation

Future<bool> startScan({List<String>? iBeaconUUIDs}) {
  throw UnimplementedError('startScan() has not been implemented.');
}