resume method
Resumes a WebView after a previous call to pause.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - WebView.onResume)
- Windows (Official API - ICoreWebView2_3.Resume
Implementation
@override
Future<void> resume() async {
Map<String, dynamic> args = <String, dynamic>{};
await channel?.invokeMethod('resume', args);
}