all method

void all()

Finish all tasks successfully.

Implementation

void all() {
  for (final e in finishers) {
    e();
  }
}