PlatformAutomatorConfig constructor

PlatformAutomatorConfig({
  1. AndroidAutomatorConfig? androidConfig,
  2. IOSAutomatorConfig? iosConfig,
  3. WebAutomatorConfig? webConfig,
  4. DesktopAutomatorConfig? desktopConfig,
})

Creates a new PlatformAutomatorConfig.

Implementation

PlatformAutomatorConfig({
  this.androidConfig,
  this.iosConfig,
  this.webConfig,
  this.desktopConfig,
});