copyWithWrapped method

WebApiModulesUtilitiesQuikActivityQuikActivityFuncQuikActivityCalendarRequest 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?>? inventoryTypeId,
  8. Wrapped<String?>? activityTypeId,
  9. Wrapped<String?>? assignedToUserId,
  10. Wrapped<bool?>? includeCompleted,
  11. Wrapped<bool?>? includeUnreserved,
  12. Wrapped<bool?>? includeTimes,
})

Implementation

WebApiModulesUtilitiesQuikActivityQuikActivityFuncQuikActivityCalendarRequest
copyWithWrapped({
  Wrapped<DateTime?>? fromDate,
  Wrapped<DateTime?>? toDate,
  Wrapped<String?>? officeLocationId,
  Wrapped<String?>? warehouseId,
  Wrapped<String?>? departmentId,
  Wrapped<String?>? dealId,
  Wrapped<String?>? inventoryTypeId,
  Wrapped<String?>? activityTypeId,
  Wrapped<String?>? assignedToUserId,
  Wrapped<bool?>? includeCompleted,
  Wrapped<bool?>? includeUnreserved,
  Wrapped<bool?>? includeTimes,
}) {
  return WebApiModulesUtilitiesQuikActivityQuikActivityFuncQuikActivityCalendarRequest(
    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),
    inventoryTypeId: (inventoryTypeId != null
        ? inventoryTypeId.value
        : this.inventoryTypeId),
    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),
    includeTimes: (includeTimes != null
        ? includeTimes.value
        : this.includeTimes),
  );
}