stopAll method
Stop all running tasks
Implementation
@override
void stopAll() {
if (_tasks.isEmpty) {
_logger.info('âšī¸ No tasks to stop');
return;
}
for (final task in _tasks.values) {
task.stop();
}
_logger.info('đ All tasks stopped (${_tasks.length} tasks)');
}