withGestures method

Widget withGestures({
  1. VoidCallback? onTap,
  2. VoidCallback? onDoubleTap,
})

Implementation

Widget withGestures({VoidCallback? onTap, VoidCallback? onDoubleTap}) {
  return GestureDetector(
    onTap: onTap,
    onDoubleTap: onDoubleTap,
    child: this,
  );
}