iipReportError method

void iipReportError(
  1. int callbackId,
  2. ErrorType errorType,
  3. int errorCode,
  4. String? errorMessage,
)

Implementation

void iipReportError(int callbackId, ErrorType errorType, int errorCode,
    String? errorMessage) {
  var req = _requests.take(callbackId);
  req?.triggerError(new AsyncException(errorType, errorCode, errorMessage));
}