RunTestCaseResponse constructor
RunTestCaseResponse({
- TestCaseResult? result,
Implementation
factory RunTestCaseResponse({
TestCaseResult? result,
}) {
final _result = create();
if (result != null) {
_result.result = result;
}
return _result;
}