clear method

void clear()

Clear all tasks from the scheduler

Implementation

void clear() {
  stopAll();
  _tasks.clear();
  _logger.info('🧹 Scheduler cleared');
}