UIStepContainer constructor

const UIStepContainer({
  1. Key? key,
  2. required String taskId,
  3. required UIComponent component,
  4. int? index,
  5. double? width,
  6. double? height,
  7. String? parentHeight,
  8. String? parentWidth,
})

Implementation

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