resume method

  1. @override
Future<void> resume()

Resumes a WebView after a previous call to pause.

Officially Supported Platforms/Implementations:

Implementation

@override
Future<void> resume() async {
  Map<String, dynamic> args = <String, dynamic>{};
  await channel?.invokeMethod('resume', args);
}