PlatformAutomatorConfig.defaultConfig constructor
PlatformAutomatorConfig.defaultConfig()
Creates a new PlatformAutomatorConfig suitable for test setup.
Implementation
factory PlatformAutomatorConfig.defaultConfig() {
return PlatformAutomatorConfig(
androidConfig: const AndroidAutomatorConfig(),
iosConfig: const IOSAutomatorConfig(),
webConfig: const WebAutomatorConfig(),
desktopConfig: const DesktopAutomatorConfig(),
);
}