UISwipe constructor

const UISwipe({
  1. Key? key,
  2. required UIComponent componentData,
  3. dynamic callback(
    1. String,
    2. String
    )?,
})

Implementation

const UISwipe({
  super.key,
  required this.componentData,
  this.callback,
});