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