RequestTypeDTO constructor

RequestTypeDTO({
  1. List<String>? expands,
  2. SelfLinkDTO? links,
  3. String? description,
  4. CustomerRequestCreateMetaDTO? fields,
  5. List<String>? groupIds,
  6. String? helpText,
  7. RequestTypeIconDTO? icon,
  8. String? id,
  9. String? issueTypeId,
  10. String? name,
  11. String? portalId,
  12. String? practice,
  13. String? serviceDeskId,
})

Implementation

RequestTypeDTO(
    {List<String>? expands,
    this.links,
    this.description,
    this.fields,
    List<String>? groupIds,
    this.helpText,
    this.icon,
    this.id,
    this.issueTypeId,
    this.name,
    this.portalId,
    this.practice,
    this.serviceDeskId})
    : expands = expands ?? [],
      groupIds = groupIds ?? [];