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;
|
||||
|
||||
InAppWebViewControllerKeepAliveProps(
|
||||
{required this.javaScriptHandlersMap,
|
||||
required this.userScripts,
|
||||
required this.webMessageListenerObjNames,
|
||||
required this.injectedScriptsFromURL,
|
||||
required this.webMessageChannels,
|
||||
required this.webMessageListeners,
|
||||
required this.devToolsProtocolEventListenerMap
|
||||
{this.javaScriptHandlersMap = const {},
|
||||
this.userScripts = const {},
|
||||
this.webMessageListenerObjNames = const {},
|
||||
this.injectedScriptsFromURL = const {},
|
||||
this.webMessageChannels = const {},
|
||||
this.webMessageListeners = const {},
|
||||
this.devToolsProtocolEventListenerMap = const {}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue