scanForDevices method

Stream<void> scanForDevices({
  1. required List<Uuid> withServices,
  2. required ScanMode scanMode,
  3. required bool requireLocationServicesEnabled,
})

Stream that handles triggers scanning for Ble devices.

As long as the stream has been listened to the scanning continues. When the stream is cancelled the ble scanning should stop.

Implementation

Stream<void> scanForDevices({
  required List<Uuid> withServices,
  required ScanMode scanMode,
  required bool requireLocationServicesEnabled,
}) {
  throw UnimplementedError('scanForDevices has not been implemented.');
}