Group constructor

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

Implementation

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