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,
      );