copyWithWrapped method
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,
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),
);
}