startBleScan method

  1. @override
Future<void> startBleScan({
  1. List<String>? serviceUuids,
  2. Duration? timeout,
})
override

Implementation

@override
Future<void> startBleScan({
  List<String>? serviceUuids,
  Duration? timeout,
}) async {
  await methodChannel.invokeMethod('startBleScan', {
    'serviceUuids': serviceUuids,
    'timeout': timeout?.inMilliseconds,
  });
}