make method

  1. @override
Widget make({
  1. Key? key,
})

Implementation

@override
Widget make({Key? key}) {
  return GestureDetector(
    key: key,
    onTap: _onClick as void Function()?,
    onDoubleTap: _onDoubleClick as void Function()?,
    onLongPress: _onLongClick as void Function()?,
    child: _child,
  );
}