KeyValueCustomSectionDataDto constructor

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

Implementation

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