stopLoading method

Future<void> stopLoading()

Stops the WebView from loading.

Supported Platforms/Implementations:

Implementation

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