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