cancelAll method

void cancelAll()

Cancel all tasks.

Implementation

void cancelAll() {
  for (final e in finishers) {
    e.cancel();
  }
}