onLongPress method

Widget onLongPress(
  1. void onLongPress(), {
  2. bool autoFocus = false,
})

Implementation

Widget onLongPress(void Function() onLongPress, {bool autoFocus = false}) =>
    InkWell(
      autofocus: autoFocus,
      onLongPress: onLongPress,
      child: this,
    );