added InAppWebViewControllerKeepAliveProps constructor parameters default value
This commit is contained in:
parent
599e2fd94f
commit
7b8ebf49d9
|
@ -31,12 +31,12 @@ class InAppWebViewControllerKeepAliveProps {
|
||||||
Map<String, Function(dynamic data)> devToolsProtocolEventListenerMap;
|
Map<String, Function(dynamic data)> devToolsProtocolEventListenerMap;
|
||||||
|
|
||||||
InAppWebViewControllerKeepAliveProps(
|
InAppWebViewControllerKeepAliveProps(
|
||||||
{required this.javaScriptHandlersMap,
|
{this.javaScriptHandlersMap = const {},
|
||||||
required this.userScripts,
|
this.userScripts = const {},
|
||||||
required this.webMessageListenerObjNames,
|
this.webMessageListenerObjNames = const {},
|
||||||
required this.injectedScriptsFromURL,
|
this.injectedScriptsFromURL = const {},
|
||||||
required this.webMessageChannels,
|
this.webMessageChannels = const {},
|
||||||
required this.webMessageListeners,
|
this.webMessageListeners = const {},
|
||||||
required this.devToolsProtocolEventListenerMap
|
this.devToolsProtocolEventListenerMap = const {}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue