callExperimentalAPI method

Future<String> callExperimentalAPI(
  1. String params
)

Call the experimental API.

Available since: 2.7.0 Description: ZEGO provides some technical previews or special customization functions in RTC business through this API. If you need to get the use of the function or the details, please consult ZEGO technical support. When to call: After createEngine.

  • params Parameters in the format of a JSON string, please consult ZEGO technical support for details.
  • Returns Returns an argument in the format of a JSON string, please consult ZEGO technical support for details.

Implementation

Future<String> callExperimentalAPI(String params) async {
  return await ZegoExpressImpl.instance.callExperimentalAPI(params);
}