queue method
Implementation
void queue(BurstRunner runner) {
_active++;
_total++;
_queue.add(runner().then((value) {
_active--;
_completed++;
}));
}
void queue(BurstRunner runner) {
_active++;
_total++;
_queue.add(runner().then((value) {
_active--;
_completed++;
}));
}