Skip to content

Commit

Permalink
added InAppWebViewControllerKeepAliveProps constructor parameters def…
Browse files Browse the repository at this point in the history
…ault value
  • Loading branch information
pichillilorenzo committed Jan 31, 2024
1 parent 599e2fd commit 7b8ebf4
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {}
});
}

0 comments on commit 7b8ebf4

Please sign in to comment.