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