startBleScan method
Implementation
@override
Future<bool> startBleScan({List<String>? serviceUuids}) async {
final result = await methodChannel.invokeMethod<bool>('startBleScan', {'serviceUuids': serviceUuids});
return result ?? false;
}
@override
Future<bool> startBleScan({List<String>? serviceUuids}) async {
final result = await methodChannel.invokeMethod<bool>('startBleScan', {'serviceUuids': serviceUuids});
return result ?? false;
}