getConfig method

Future<Result<ConfigBase>> getConfig()

Get Config.

ID: c4f9186b.

Implementation

Future<Result<ConfigBase>> getConfig() async {
  // Preparing the request.
  final request = HelpGetConfig();

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<ConfigBase>();
}