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