mergePlatformSettings method
ExecutableSettings
mergePlatformSettings(
- ExecutableSettings settings1,
- ExecutableSettings settings2
Merges settings1
with settings2
and returns a new settings object that
includes the configuration of both.
When the settings conflict, settings2
should take priority.
This is used to merge global settings with local settings, or a custom platform's settings with its parent's.
Implementation
@override
ExecutableSettings mergePlatformSettings(
ExecutableSettings settings1, ExecutableSettings settings2) =>
browserPlatform.mergePlatformSettings(settings1, settings2);