Test constructor

Test({
  1. int? id,
  2. String? name,
  3. int? suiteID,
  4. List<int>? groupIDs,
  5. Metadata? metadata,
  6. int? line,
  7. int? column,
  8. String? url,
})

Implementation

Test(
    {this.id,
      this.name,
      this.suiteID,
      this.groupIDs,
      this.metadata,
      this.line,
      this.column,
      this.url});