SwipeCard constructor
const
SwipeCard({
- Key? key,
- required dynamic onSwipe(
- double dx,
- double dy,
- DismissDirection,
- Duration duration,
- bool swipable = false,
- required AnimationController simulationSwiper,
- SwipeCardController? controller,
- Widget? child,
- dynamic onPanUpdate()?,
Implementation
const SwipeCard({
Key? key,
required this.onSwipe,
this.swipable = false,
required this.simulationSwiper,
this.controller,
this.child,
this.onPanUpdate,
}) : super(key: key);