onPanDown method

Widget onPanDown(
  1. dynamic onPanDown(
    1. DragDownDetails
    )
)

Implementation

Widget onPanDown(Function(DragDownDetails) onPanDown) {
  return GestureDetector(
    onPanDown: onPanDown,
    child: this,
  );
}