UIShareButton constructor

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

Implementation

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