TestResults constructor

TestResults({
  1. int? limit,
  2. Links? links,
  3. int? offset,
  4. List<TestResult>? results,
  5. int? size,
})

Implementation

TestResults({
  this.limit,
  this.links,
  this.offset,
  this.results,
  this.size,
});