UIStepContainer constructor

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

Implementation

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