TestGroupUnit constructor

TestGroupUnit({
  1. required int id,
  2. String? name,
  3. int? parentID,
  4. required List<TestCaseUnit> tests,
})

Implementation

TestGroupUnit({
  required this.id,
  this.name,
  this.parentID,
  required this.tests,
});