UIImage constructor

const UIImage({
  1. Key? key,
  2. required UIComponent componentData,
  3. required String taskId,
  4. required dynamic imageClickHandler(
    1. String
    ),
  5. String? assetUrl,
  6. required Map<String, dynamic> assets,
  7. int? index,
})

Implementation

const UIImage({
  super.key,
  required this.componentData,
  required this.taskId,
  required this.imageClickHandler,
  this.assetUrl,
  required this.assets,
  this.index,
});