onLongPress property

VoidCallback? get onLongPress

Called when assistive technology long-presses the node.

Implementation

VoidCallback? get onLongPress => _onLongPress;
set onLongPress (VoidCallback? value)

Implementation

set onLongPress(VoidCallback? value) {
  _assertConvenience();
  if (value == _onLongPress) return;
  _onLongPress = value;
  _bump();
}