onVerticalDrag method
Implementation
Widget onVerticalDrag(Function(DragUpdateDetails) onVerticalDrag) {
return GestureDetector(
onVerticalDragUpdate: onVerticalDrag,
child: this,
);
}
Widget onVerticalDrag(Function(DragUpdateDetails) onVerticalDrag) {
return GestureDetector(
onVerticalDragUpdate: onVerticalDrag,
child: this,
);
}