downloadCallback static method

void downloadCallback(
  1. String id,
  2. int status,
  3. int progress
)

Implementation

@pragma('vm:entry-point')
static void downloadCallback(String id, int status, int progress) {
  IsolateNameServer.lookupPortByName('downloader_send_port')?.send([id, status, progress]);
}