UIContainer constructor

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

Implementation

const UIContainer({
  super.key,
  this.type,
  required this.componentData,
  required this.taskId,
  required this.rootId,
  this.children,
  required this.callBack,
  this.assets,
  required this.assetUrl,
  this.width,
  this.height,
  this.index,
  this.parentHeight,
  this.parentWidth,
});