pauseTimers method

Future<void> pauseTimers()

On Android native WebView, it pauses all layout, parsing, and JavaScript timers for all WebViews. This is a global requests, not restricted to just this WebView. This can be useful if the application has been paused.

On iOS, it is implemented using JavaScript and it is restricted to just this WebView.

Supported Platforms/Implementations:

Implementation

Future<void> pauseTimers() async {
  Map<String, dynamic> args = <String, dynamic>{};
  await _channel.invokeMethod('pauseTimers', args);
}