toPlatformAutomatorConfig method

PlatformAutomatorConfig toPlatformAutomatorConfig()

Converts this configuration to a PlatformAutomatorConfig.

Implementation

PlatformAutomatorConfig toPlatformAutomatorConfig() {
  return PlatformAutomatorConfig.fromOptions(
    iosInstalledApps: iosInstalledApps,
    connectionTimeout: connectionTimeout,
    findTimeout: findTimeout,
    keyboardBehavior: keyboardBehavior,
    packageName: packageName,
    bundleId: bundleId,
  );
}