TaskInfo constructor

const TaskInfo({
  1. required String name,
  2. required String executionId,
  3. required TaskStatus status,
  4. List<String> tags = const [],
  5. String priority = 'normal',
  6. DateTime? scheduledAt,
})

Implementation

const TaskInfo({
  required this.name,
  required this.executionId,
  required this.status,
  this.tags = const [],
  this.priority = 'normal',
  this.scheduledAt,
});