loadDataWithBaseURL method
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");
}