setSystemClockJumpDetectionEnabled method

Future<void> setSystemClockJumpDetectionEnabled(
  1. bool enabled
)

Sets the System Clock Jump Detection. @param isEnabled Set to true to enable, false to disable

Implementation

Future<void> setSystemClockJumpDetectionEnabled(bool enabled) {
  return methodChannel.invokeMethod('setSystemClockJumpDetectionEnabled', {Args.enabled: enabled});
}