CreateTestCaseRequest constructor
Implementation
factory CreateTestCaseRequest({
$core.String? parent,
TestCase? testCase,
}) {
final _result = create();
if (parent != null) {
_result.parent = parent;
}
if (testCase != null) {
_result.testCase = testCase;
}
return _result;
}