Test constructor

Test({
  1. required int id,
  2. required String name,
  3. required int suiteID,
  4. required List<int> groupIDs,
  5. int? line,
  6. int? column,
  7. String? url,
  8. int? rootLine,
  9. int? rootColumn,
  10. String? rootUrl,
})

Implementation

Test({
  required this.id,
  required this.name,
  required this.suiteID,
  required this.groupIDs,
  this.line,
  this.column,
  this.url,
  this.rootLine,
  this.rootColumn,
  this.rootUrl,
});