postUrl method
Loads the given url
with postData
(x-www-form-urlencoded) using POST
method into this WebView.
Example:
var postData = Uint8List.fromList(utf8.encode("firstname=Foo&surname=Bar"));
controller.postUrl(url: WebUri("https://www.example.com/"), postData: postData);
NOTE for Web: it will try to create an XMLHttpRequest and load the result inside the iframe.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - WebView.postUrl)
- iOS
- MacOS
- Web
Implementation
Future<void> postUrl({required WebUri url, required Uint8List postData}) {
throw UnimplementedError(
'postUrl is not implemented on the current platform');
}