getInstallTrace method

void getInstallTrace(
  1. ResponseHandler responseHandler, [
  2. int timeoutSeconds = 10
])

Implementation

void getInstallTrace(ResponseHandler responseHandler, [int timeoutSeconds = 10]) {
  var args = new Map();
  args["timeoutSeconds"] = timeoutSeconds.toString();
  this._installRespHandler = responseHandler;
  _channel.invokeMethod("getInstallTrace", args);
}