setSystemClockJumpDetectionInterval method

Future<void> setSystemClockJumpDetectionInterval(
  1. int interval
)

Sets the system clock jump detection interval. @param interval Check interval in seconds

Implementation

Future<void> setSystemClockJumpDetectionInterval(int interval) {
  return methodChannel.invokeMethod('setSystemClockJumpDetectionInterval', {Args.interval: interval});
}