iipReportProgress method

void iipReportProgress(
  1. int callbackId,
  2. ProgressType type,
  3. int value,
  4. int max,
)

Implementation

void iipReportProgress(
    int callbackId, ProgressType type, int value, int max) {
  var req = _requests[callbackId];
  req?.triggerProgress(type, value, max);
}