CustomSectionDto constructor

CustomSectionDto(
  1. {required CustomSectionPositionDto position,
  2. required CustomSectionTypeDto section,
  3. String? title,
  4. List<CustomSectionDataBaseDto>? data}
)

Implementation

CustomSectionDto({
  required this.position,
  required this.section,
  this.title,
  this.data,
});