StepItemData constructor
const
StepItemData({
- required String title,
- String? description,
- StepStatus status = StepStatus.pending,
- Widget? content,
Implementation
const StepItemData({
required this.title,
this.description,
this.status = StepStatus.pending,
this.content,
});