stopLoading method

  1. @override
Future<void> stopLoading()

Stops the WebView from loading.

NOTE for Web: this method will have effect only if the iframe has the same origin.

Officially Supported Platforms/Implementations:

Implementation

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