PlanStep constructor
PlanStep({})
Implementation
PlanStep({
required this.id,
required this.title,
this.description = '',
this.status = PlanStepStatus.pending,
List<PlanStep>? substeps,
List<String>? dependencies,
}) : substeps = substeps ?? [],
dependencies = dependencies ?? [];