cancelJob method

void cancelJob(
  1. String id
)

Cancels a scraping job

id is the unique identifier for the job

Implementation

void cancelJob(String id) {
  _jobScheduler.cancelJob(id);
}