scanForPeripherals method

Stream<DiscoveredBlePeripheral> scanForPeripherals(
  1. List<String>? serviceIds
)

Scans for peripherals that contain the optional list of given service ids.

Implementation

Stream<DiscoveredBlePeripheral> scanForPeripherals(List<String>? serviceIds) =>
    _BlePlatform.instance.centralManagerScanForPeripherals(serviceIds);