loadRequest method

  1. @override
Future<void> loadRequest(
  1. WebViewRequest request
)
override

Makes a specific HTTP request ands loads the response in the webview.

WebViewRequest.method must be one of the supported HTTP methods in WebViewRequestMethod.

If WebViewRequest.headers is not empty, its key-value pairs will be added as the headers for the request.

If WebViewRequest.body is not null, it will be added as the body for the request.

Throws an ArgumentError if WebViewRequest.uri has empty scheme.

Implementation

@override
Future<void> loadRequest(WebViewRequest request) async {
  assert(request != null);
  return _channel.invokeMethod<void>('loadRequest', <String, dynamic>{
    'request': request.toJson(),
  });
}