longTapDelay property

double get longTapDelay

The delay (in seconds) after which a tap is considered a long tap.

Implementation

static double get longTapDelay => _longTapDelay;
set longTapDelay (double value)

Set the delay (in seconds) after which a tap is considered a long tap. Same games may want to change the long tap delay to better fit their needs or accessibility requirements.

Implementation

static set longTapDelay(double value) {
  _longTapDelay = max(_minLongTapDelay, value);
}