CreateTestCaseRequest constructor

CreateTestCaseRequest({
  1. String? parent,
  2. TestCase? testCase,
})

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;
}