InAppWebViewInitialData constructor
Implementation
InAppWebViewInitialData({
@Deprecated('Use historyUrl instead') this.androidHistoryUrl,
this.baseUrl,
required this.data,
this.encoding = "utf8",
this.historyUrl,
this.mimeType = "text/html",
}) {
historyUrl =
historyUrl ??
(androidHistoryUrl != null ? WebUri.uri(androidHistoryUrl!) : null);
}