getCallConfig method

Future<Result<DataJSONBase>> getCallConfig()

Get Call Config.

ID: 55451fa9.

Implementation

Future<Result<DataJSONBase>> getCallConfig() async {
  // Preparing the request.
  final request = PhoneGetCallConfig();

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

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