SectionEntity constructor

SectionEntity({
  1. String? title,
  2. String? description,
  3. String? imageId,
  4. int? imagePositionRelative,
  5. int? imageAlignment,
  6. double? imageWidth,
  7. List<LinkEntity>? links,
})

Implementation

SectionEntity({
  this.title,
  this.description,
  this.imageId,
  this.imagePositionRelative,
  this.imageAlignment,
  this.imageWidth,
  this.links,
});