toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (appApk != null) 'appApk': appApk!,
      if (appBundle != null) 'appBundle': appBundle!,
      if (appPackageId != null) 'appPackageId': appPackageId!,
      if (orchestratorOption != null)
        'orchestratorOption': orchestratorOption!,
      if (shardingOption != null) 'shardingOption': shardingOption!,
      if (testApk != null) 'testApk': testApk!,
      if (testPackageId != null) 'testPackageId': testPackageId!,
      if (testRunnerClass != null) 'testRunnerClass': testRunnerClass!,
      if (testTargets != null) 'testTargets': testTargets!,
    };