Get a list of active task names
@override List<String> activeTasks() => _tasks.keys .where((name) => _tasks[name]?.stats.status != TaskStatus.stopped) .toList();