UIList constructor

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

Implementation

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