CustomerRequestDTO constructor
      
      CustomerRequestDTO({ 
    
    
- List<String> ? expands,
- CustomerRequestLinkDTO? links,
- CustomerRequestActionsDTO? actions,
- PagedDTOAttachmentDTO? attachments,
- PagedDTOCommentDTO? comments,
- DateDTO? createdDate,
- CustomerRequestStatusDTO? currentStatus,
- String? issueId,
- String? issueKey,
- PagedDTOUserDTO? participants,
- UserDTO? reporter,
- List<CustomerRequestFieldValueDTO> ? requestFieldValues,
- RequestTypeDTO? requestType,
- String? requestTypeId,
- ServiceDeskDTO? serviceDesk,
- String? serviceDeskId,
- PagedDTOSlaInformationDTO? sla,
- PagedDTOCustomerRequestStatusDTO? status,
Implementation
CustomerRequestDTO(
    {List<String>? expands,
    this.links,
    this.actions,
    this.attachments,
    this.comments,
    this.createdDate,
    this.currentStatus,
    this.issueId,
    this.issueKey,
    this.participants,
    this.reporter,
    List<CustomerRequestFieldValueDTO>? requestFieldValues,
    this.requestType,
    this.requestTypeId,
    this.serviceDesk,
    this.serviceDeskId,
    this.sla,
    this.status})
    : expands = expands ?? [],
      requestFieldValues = requestFieldValues ?? [];