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