SectionModel constructor

SectionModel({
  1. required String documentID,
  2. String? title,
  3. String? description,
  4. PlatformMediumModel? image,
  5. RelativeImagePosition? imagePositionRelative,
  6. SectionImageAlignment? imageAlignment,
  7. double? imageWidth,
  8. List<LinkModel>? links,
})

Implementation

SectionModel({
  required this.documentID,
  this.title,
  this.description,
  this.image,
  this.imagePositionRelative,
  this.imageAlignment,
  this.imageWidth,
  this.links,
});