startScan method

  1. @override
Future<bool?> startScan({
  1. String? macAddress,
  2. List<String>? servicesUuids,
})
override

startScan starts scanning for BLE devices.

To get the results, you need to set a callback function using onScanResult.

Implementation

@override
Future<bool?> startScan({
  String? macAddress,
  List<String>? servicesUuids,
}) =>
    throw UnimplementedError('startScan() has not been implemented.');