TestGroupUnit constructor
TestGroupUnit({
- required int id,
- String? name,
- int? parentID,
- required List<
TestCaseUnit> tests,
Implementation
TestGroupUnit({
required this.id,
this.name,
this.parentID,
required this.tests,
});