resetIdleTimer static method

Future<void> resetIdleTimer()

Reset the idle timer and prevent Fullstory from going into a lower-fidelity mode that conserves power and bandwidth.

Most apps do not need to call this, because Fullstory automatically resets the timer whenever user interaction is detected.

For more information, see https://developer.fullstory.com/mobile/flutter/fullcapture/reset-idle-timer/

Implementation

static Future<void> resetIdleTimer() {
  return FullstoryFlutterPlatform.instance.resetIdleTimer();
}