TestCases constructor

TestCases({
  1. int? limit,
  2. Links? links,
  3. int? offset,
  4. List<TestCase>? runs,
  5. int? size,
})

Implementation

TestCases({
  this.limit,
  this.links,
  this.offset,
  this.runs,
  this.size,
});