killAll method

void killAll()

Implementation

void killAll() {
  for (final task in topLevelTasks) {
    task.kill();
  }
}