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