RequestCreateDTO constructor

RequestCreateDTO({
  1. String? channel,
  2. Form? form,
  3. bool? isAdfRequest,
  4. String? raiseOnBehalfOf,
  5. Map<String, dynamic>? requestFieldValues,
  6. List<String>? requestParticipants,
  7. String? requestTypeId,
  8. String? serviceDeskId,
})

Implementation

RequestCreateDTO(
    {this.channel,
    this.form,
    bool? isAdfRequest,
    this.raiseOnBehalfOf,
    this.requestFieldValues,
    List<String>? requestParticipants,
    this.requestTypeId,
    this.serviceDeskId})
    : isAdfRequest = isAdfRequest ?? false,
      requestParticipants = requestParticipants ?? [];