onLongPress method

Future<bool> onLongPress(
  1. BuildContext context
)

Implementation

Future<bool> onLongPress(BuildContext context) async {
  if (onlongpress == null) return true;
  return await EventHandler(this).execute(_onlongpress);
}