disposeWorker static method

void disposeWorker(
  1. String id
)

Disposes the worker in the isolate. id is the unique identifier for the worker.

Implementation

static void disposeWorker(String id) {
  _send(DisposeWorkerCommand(id));
}