TextCustomSectionDataDto constructor

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

Implementation

TextCustomSectionDataDto({
  this.text,
  required CustomSectionDataTypeDto type,
  required int sequenceNumber,
  String? customSectionId,
}) : super(
        type: type,
        sequenceNumber: sequenceNumber,
        customSectionId: customSectionId,
      );