resumeTimers method
On Android, it resumes all layout, parsing, and JavaScript timers for all WebViews. This will resume dispatching all timers.
NOTE for iOS: it is implemented using JavaScript and it is restricted to just this WebView.
NOTE for MacOS: it is implemented using JavaScript and it is restricted to just this WebView.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - WebView.resumeTimers)
- iOS
- MacOS
Implementation
Future<void> resumeTimers() {
throw UnimplementedError(
'resumeTimers is not implemented on the current platform');
}