Group constructor

Group({
  1. int? id,
  2. int? suiteID,
  3. int? parentID,
  4. String? name,
  5. Metadata? metadata,
  6. int? testCount,
  7. int? line,
  8. int? column,
  9. String? url,
})

Implementation

Group(
    {this.id,
      this.suiteID,
      this.parentID,
      this.name,
      this.metadata,
      this.testCount,
      this.line,
      this.column,
      this.url});