PipenSwipe constructor

PipenSwipe({
  1. Key? key,
  2. Widget? child,
  3. VoidCallback? onInit,
  4. double gap = 0,
  5. List<Widget>? children,
  6. VoidCallback? onRefresh,
  7. ScrollController? controller,
  8. double spacing = 0,
  9. EdgeInsets padding = EdgeInsets.zero,
})

Implementation

PipenSwipe({
  super.key,
  this.child,
  this.onInit,
  this.gap = 0,
  this.children,
  this.onRefresh,
  this.controller,
  this.spacing = 0,
  this.padding = EdgeInsets.zero,
}) {
  assert(children != null || child != null);
}