AndroidRoboTest.fromJson constructor

AndroidRoboTest.fromJson(
  1. Map json_
)

Implementation

AndroidRoboTest.fromJson(core.Map json_)
    : this(
        appInitialActivity: json_.containsKey('appInitialActivity')
            ? json_['appInitialActivity'] as core.String
            : null,
        bootstrapPackageId: json_.containsKey('bootstrapPackageId')
            ? json_['bootstrapPackageId'] as core.String
            : null,
        bootstrapRunnerClass: json_.containsKey('bootstrapRunnerClass')
            ? json_['bootstrapRunnerClass'] as core.String
            : null,
        maxDepth: json_.containsKey('maxDepth')
            ? json_['maxDepth'] as core.int
            : null,
        maxSteps: json_.containsKey('maxSteps')
            ? json_['maxSteps'] as core.int
            : null,
      );