MacWebViewBrowser constructor
MacWebViewBrowser({
- int? windowId,
- UnmodifiableListView<
UserScript> ? initialUserScripts, - required DataPayload dataPayload,
- required BuildContext context,
Implementation
MacWebViewBrowser({
super.windowId,
super.initialUserScripts,
required this.dataPayload,
required this.context,
}) {
_handlerService = JavaScriptHandlerService(
socketInfo: dataPayload.payload.data.socket,
inAppBrowser: this,
context: context,
);
}