onPanEnd method

Widget onPanEnd(
  1. dynamic onPanEnd(
    1. DragEndDetails
    )
)

Implementation

Widget onPanEnd(Function(DragEndDetails) onPanEnd) {
  return GestureDetector(
    onPanEnd: onPanEnd,
    child: this,
  );
}