QrCodeCustomSectionDataDto constructor

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

Implementation

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