UIStepItem constructor

const UIStepItem({
  1. Key? key,
  2. required UIComponent component,
  3. required List<UIComponent> children,
  4. required String taskId,
  5. required String rootId,
  6. Map<String, dynamic>? assets,
  7. String? assetUrl,
  8. int? index,
  9. String? id,
  10. String? parentHeight,
  11. String? parentWidth,
  12. double? width,
  13. double? height,
  14. String? stepOrientation,
})

Implementation

const UIStepItem({
  super.key,
  required this.component,
  required this.children,
  required this.taskId,
  required this.rootId,
  this.assets,
  this.assetUrl,
  this.index,
  this.id,
  this.parentHeight,
  this.parentWidth,
  this.width,
  this.height,
  this.stepOrientation,
});