copyWithWrapped method

WebApiModulesUtilitiesQuikActivityQuikActivityFuncPopulateQuikActivityRequest copyWithWrapped({
  1. Wrapped<DateTime?>? fromDate,
  2. Wrapped<DateTime?>? toDate,
  3. Wrapped<String?>? officeLocationId,
  4. Wrapped<String?>? warehouseId,
  5. Wrapped<String?>? departmentId,
  6. Wrapped<String?>? dealId,
  7. Wrapped<String?>? activityTypeId,
  8. Wrapped<String?>? assignedToUserId,
  9. Wrapped<bool?>? includeCompleted,
  10. Wrapped<bool?>? includeUnreserved,
  11. Wrapped<bool?>? summary,
})

Implementation

WebApiModulesUtilitiesQuikActivityQuikActivityFuncPopulateQuikActivityRequest
    copyWithWrapped(
        {Wrapped<DateTime?>? fromDate,
        Wrapped<DateTime?>? toDate,
        Wrapped<String?>? officeLocationId,
        Wrapped<String?>? warehouseId,
        Wrapped<String?>? departmentId,
        Wrapped<String?>? dealId,
        Wrapped<String?>? activityTypeId,
        Wrapped<String?>? assignedToUserId,
        Wrapped<bool?>? includeCompleted,
        Wrapped<bool?>? includeUnreserved,
        Wrapped<bool?>? summary}) {
  return WebApiModulesUtilitiesQuikActivityQuikActivityFuncPopulateQuikActivityRequest(
      fromDate: (fromDate != null ? fromDate.value : this.fromDate),
      toDate: (toDate != null ? toDate.value : this.toDate),
      officeLocationId: (officeLocationId != null
          ? officeLocationId.value
          : this.officeLocationId),
      warehouseId:
          (warehouseId != null ? warehouseId.value : this.warehouseId),
      departmentId:
          (departmentId != null ? departmentId.value : this.departmentId),
      dealId: (dealId != null ? dealId.value : this.dealId),
      activityTypeId: (activityTypeId != null
          ? activityTypeId.value
          : this.activityTypeId),
      assignedToUserId: (assignedToUserId != null
          ? assignedToUserId.value
          : this.assignedToUserId),
      includeCompleted: (includeCompleted != null
          ? includeCompleted.value
          : this.includeCompleted),
      includeUnreserved: (includeUnreserved != null
          ? includeUnreserved.value
          : this.includeUnreserved),
      summary: (summary != null ? summary.value : this.summary));
}