UIStep constructor

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

Implementation

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