onLongPress property
Called when assistive technology long-presses the node.
Implementation
VoidCallback? get onLongPress => _onLongPress;
Implementation
set onLongPress(VoidCallback? value) {
_assertConvenience();
if (value == _onLongPress) return;
_onLongPress = value;
_bump();
}