getCdnConfig method

Future<Result<CdnConfigBase>> getCdnConfig()

Get Cdn Config.

ID: 52029342.

Implementation

Future<Result<CdnConfigBase>> getCdnConfig() async {
  // Preparing the request.
  final request = HelpGetCdnConfig();

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

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