UIScrollContainer constructor

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

Implementation

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