start method
void
start()
Implementation
void start() {
for (final runner in runners) {
final future = runner.run();
future.then((code) {
complete(runner.task.id, code);
}).ignore();
}
}
void start() {
for (final runner in runners) {
final future = runner.run();
future.then((code) {
complete(runner.task.id, code);
}).ignore();
}
}