Section constructor

Section({
  1. SectionLinks? links,
  2. DateTime? createdAt,
  3. String? description,
  4. String? id,
  5. required String name,
  6. String? type,
  7. DateTime? updatedAt,
})

Returns a new Section instance.

Implementation

Section({
  this.links,
  this.createdAt,
  this.description,
  this.id,
  required this.name,
  this.type,
  this.updatedAt,
});