onLongPress method
Implementation
Widget onLongPress(VoidCallback? onLongPress, {Key? key}) {
return GestureDetector(
key: key,
onLongPress: onLongPress,
child: Material(
color: Colors.transparent,
child: this,
),
);
}