getAllConfig static method

Future<String> getAllConfig()

Implementation

static Future<String> getAllConfig() async {
  final channel = await Channel.getOpenIoTHubChannel();
  final stub = UtilsClient(channel);
  Empty empty = Empty();
  final response = await stub.getAllConfig(empty);
  channel.shutdown();
  return response.value;
}