remove method

void remove(
  1. Future<void> job()
)

Removes a job from the queue.

The job is removed from the queue, and will not be executed when run is called.

If the job is not in the queue, this method does nothing.

Implementation

void remove(Future<void> Function() job) {
  _jobs.remove(job);
}