failAll method

void failAll()

Fail all tasks.

Implementation

void failAll() {
  for (final e in finishers) {
    e.fail();
  }
}