scan method
Stream<ScanResult>
scan({
- List<
Uuid> withServices = const [], - List<
String> withRemoteIds = const [], - List<
String> withNames = const [], - List<
String> withKeywords = const [], - List<
MsdFilter> withMsd = const [], - List<
ServiceDataFilter> withServiceData = const [], - bool continuousUpdates = false,
- int continuousDivisor = 1,
- bool androidLegacy = false,
- AndroidScanMode androidScanMode = AndroidScanMode.lowLatency,
- bool androidUsesFineLocation = false,
- List<
Uuid> webOptionalServices = const [], - Duration? timeout,
Implementation
Stream<ScanResult> scan({
List<Uuid> withServices = const [],
List<String> withRemoteIds = const [],
List<String> withNames = const [],
List<String> withKeywords = const [],
List<MsdFilter> withMsd = const [],
List<ServiceDataFilter> withServiceData = const [],
bool continuousUpdates = false,
int continuousDivisor = 1,
bool androidLegacy = false,
AndroidScanMode androidScanMode = AndroidScanMode.lowLatency,
bool androidUsesFineLocation = false,
List<Uuid> webOptionalServices = const [],
Duration? timeout,
}) => Bluebird.scan(
withServices: withServices,
withRemoteIds: withRemoteIds,
withNames: withNames,
withKeywords: withKeywords,
withMsd: withMsd,
withServiceData: withServiceData,
continuousUpdates: continuousUpdates,
continuousDivisor: continuousDivisor,
androidLegacy: androidLegacy,
androidScanMode: androidScanMode,
androidUsesFineLocation: androidUsesFineLocation,
webOptionalServices: webOptionalServices,
timeout: timeout,
);