getServices method
Implementation
Future<List<BleService>?> getServices() async{
_bleServiceCompleter=Completer();
_channel.invokeMethod("getServices");
return await _bleServiceCompleter?.future;
}
Future<List<BleService>?> getServices() async{
_bleServiceCompleter=Completer();
_channel.invokeMethod("getServices");
return await _bleServiceCompleter?.future;
}