startScanningDevices method

Stream<List<MoveDevice>> startScanningDevices({
  1. List<MoveDeviceFilter> filter = const [MoveDeviceFilter.paired],
  2. String? uuid,
  3. int? manufacturerId,
})

Starts scanning for devices that can be registered with the sdk Scan can be filtered with filter, default includes only paired devices for scanning beacons uuid and manufacturerId must be specified

Implementation

Stream<List<MoveDevice>> startScanningDevices(
    {List<MoveDeviceFilter> filter = const [MoveDeviceFilter.paired],
    String? uuid,
    int? manufacturerId}) async* {
  throw UnimplementedError('setDeviceScanner() has not been implemented.');
}