postUrl method

Future<void> postUrl({
  1. required String url,
  2. required Uint8List postData,
})

Implementation

Future<void> postUrl(
    {required String url, required Uint8List postData}) async {
  await loadUrl(
      urlRequest:
          URLRequest(url: WebUri(url), method: "POST", body: postData));
}