toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (testIssues != null)
        'testIssues': testIssues!.map((value) => value.toJson()).toList(),
      if (testSuiteOverviews != null)
        'testSuiteOverviews':
            testSuiteOverviews!.map((value) => value.toJson()).toList(),
      if (testTiming != null) 'testTiming': testTiming!.toJson(),
      if (toolExecution != null) 'toolExecution': toolExecution!.toJson(),
    };