startScanningDevices method
Stream<List<MoveDevice> >
startScanningDevices({
- List<
MoveDeviceFilter> filter = const [MoveDeviceFilter.paired], - String? uuid,
- 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(
'startScanningDevices() has not been implemented.');
}