PipenSwipe constructor
PipenSwipe({
- Key? key,
- Widget? child,
- VoidCallback? onInit,
- double gap = 0,
- List<
Widget> ? children, - VoidCallback? onRefresh,
- ScrollController? controller,
- double spacing = 0,
- 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);
}