BatchRunTestCasesResponse constructor
BatchRunTestCasesResponse({
- Iterable<
TestCaseResult> ? results,
Implementation
factory BatchRunTestCasesResponse({
$core.Iterable<TestCaseResult>? results,
}) {
final _result = create();
if (results != null) {
_result.results.addAll(results);
}
return _result;
}