toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (outcome != null) 'outcome': outcome!.toJson(),
if (state != null) 'state': state!,
if (testSuiteOverviews != null)
'testSuiteOverviews':
testSuiteOverviews!.map((value) => value.toJson()).toList(),
};