onApiCalledResult method

void onApiCalledResult(
  1. int errorCode,
  2. String funcName,
  3. String info
)

Method execution result callback

Available since: 2.3.0 Description: When the monitoring is turned on through setApiCalledCallback, the results of the execution of all methods will be called back through this callback. Trigger: When the developer calls the SDK method, the execution result of the method is called back. Restrictions: None. Caution: It is recommended to monitor and process this callback in the development and testing phases, and turn off the monitoring of this callback after going online.

Implementation

void onApiCalledResult(
  int errorCode,
  String funcName,
  String info,
) {}