loadUrl method
Loads the specified URL.
If headers
is not null and the URL is an HTTP URL, the key value paris in headers
will
be added as key value pairs of HTTP headers for the request.
url
must not be null.
Throws an ArgumentError if url
is not a valid URL string.
Implementation
Future<void> loadUrl(
String url,
Map<String, String>? headers,
) {
throw UnimplementedError(
"WebView loadUrl is not implemented on the current platform");
}