loadDataWithBaseURL method

Future<void> loadDataWithBaseURL(
  1. String? baseUrl,
  2. String data,
  3. String? mimeType,
  4. String? encoding,
  5. String? failUrl,
)

Loads the given data into this WebView, using baseUrl as the base URL for the content.

The base URL is used both to resolve relative URLs and when applying JavaScript's same origin policy.

The historyUrl is used for the history entry.

data must not be null.

Implementation

Future<void> loadDataWithBaseURL(
  String? baseUrl,
  String data,
  String? mimeType,
  String? encoding,
  String? failUrl,
) {
  throw UnimplementedError(
      "WebView loadDataWithBaseURL is not implemented on the current platform");
}