TestSection constructor

TestSection({
  1. int? depth,
  2. String? description,
  3. int? displayOrder,
  4. required int id,
  5. String? name,
  6. int? parentId,
  7. int? suiteId,
})

Implementation

TestSection({
  this.depth,
  this.description,
  this.displayOrder,
  required this.id,
  this.name,
  this.parentId,
  this.suiteId,
});