toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appApk = this.appApk;
final appBundle = this.appBundle;
final appPackageId = this.appPackageId;
final orchestratorOption = this.orchestratorOption;
final shardingOption = this.shardingOption;
final testApk = this.testApk;
final testPackageId = this.testPackageId;
final testRunnerClass = this.testRunnerClass;
final testTargets = this.testTargets;
return {
'appApk': ?appApk,
'appBundle': ?appBundle,
'appPackageId': ?appPackageId,
'orchestratorOption': ?orchestratorOption,
'shardingOption': ?shardingOption,
'testApk': ?testApk,
'testPackageId': ?testPackageId,
'testRunnerClass': ?testRunnerClass,
'testTargets': ?testTargets,
};
}