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