BarcodeCustomSectionDataDto constructor

BarcodeCustomSectionDataDto(
  1. {String? value,
  2. required CustomSectionBarcodeTypeDto barcodeType,
  3. required CustomSectionDataTypeDto type,
  4. required int sequenceNumber,
  5. String? customSectionId}
)

Implementation

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