ScheduledTask constructor
ScheduledTask({})
Implementation
ScheduledTask({
required this.id,
required this.name,
required this.cronExpression,
required this.callback,
required this.createdAt,
}) : status = TaskStatus.scheduled,
error = null;