CustomSectionDataBaseDto constructor

CustomSectionDataBaseDto(
  1. {required CustomSectionDataTypeDto type,
  2. required int sequenceNumber,
  3. String? customSectionId}
)

Implementation

CustomSectionDataBaseDto({
  required this.type,
  required this.sequenceNumber,
  this.customSectionId,
});