added InAppWebViewControllerKeepAliveProps constructor parameters default value

This commit is contained in:
unknown 2024-01-31 14:19:54 +01:00
parent 599e2fd94f
commit 7b8ebf49d9
1 changed files with 7 additions and 7 deletions

View File

@ -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 {}
});
}