getServices method

Future<List<BleService>?> getServices()

Implementation

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