UISwipe constructor

const UISwipe({
  1. Key? key,
  2. required UIComponent swipeUpComponent,
  3. required String taskId,
  4. required String rootId,
  5. String? fontFamily,
  6. dynamic callBack(
    1. String?,
    2. String?,
    3. String?
    )?,
  7. bool? handleCustomDeepLink,
  8. int? index,
})

Implementation

const UISwipe({
  super.key,
  required this.swipeUpComponent,
  required this.taskId,
  required this.rootId,
  this.fontFamily,
  this.callBack,
  this.handleCustomDeepLink,
  this.index,
});